[jQuery] Re: jquery blocks javascript?

2009-07-31 Thread solow
I got half of it. $(document).ready(function () { $(function() { $("div ul li a").live("mouseover", function() { if ($(this).is(':animated')) { $(this).stop().animate({width: "83px"}, {duration: 250, easing:"easeOutQuad"}); } else {

[jQuery] Re: jquery blocks javascript?

2009-07-31 Thread solow
Yes I get the point... But how to use this on a hover? Because I really cant see how to use this with my code... sorry :$ I'm actually a php and perl programmer. I recently started with ajax, and now with jquery, so i'm kind of new to this jquery stuff... ***and not only that, The live thing, has

[jQuery] Re: jquery blocks javascript?

2009-07-31 Thread Adrian Lynch
Here's an example that highlights the problem. Run this first sample and note that the second button to appear does nothing when clicked: $(function() { $("button").click(function() { alert("RAR!"); $(this).afte

[jQuery] Re: jquery blocks javascript?

2009-07-30 Thread solow
Thanks a lot. This is the best answer av had so far. So as far as I understand, when calling for the page, where this javascript will be executed, I'll have to call for the functions again. so that it once again checks all ul li a tags? Because I've done some further reading, which brought me to

[jQuery] Re: jquery blocks javascript?

2009-07-30 Thread solow
Thanks a lot. This is the best answer av had so far. So as far as I understand, when calling for the page, where this javascript will be executed, I'll have to call for the functions again. so that it once again checks all ul li a tags. Thank you so much.

[jQuery] Re: jquery blocks javascript?

2009-07-30 Thread Karl Swedberg
On Jul 30, 2009, at 7:31 PM, solow wrote: I think i'm using 1.3... But this is the way, to execute javascript, in content whch has been loaded using $("#DIV").load ? Yes, you need to either use event delegation or rebind the event handlers. This FAQ topic should help answer your question:

[jQuery] Re: jquery blocks javascript?

2009-07-30 Thread solow
I think i'm using 1.3... But this is the way, to execute javascript, in content whch has been loaded using $("#DIV").load ?

[jQuery] Re: jquery blocks javascript?

2009-07-30 Thread James
You need to use jQuery version 1.3 or greater to use $.live(). Otherwise you can use the livequery plugin with older versions of jQuery. On Jul 30, 12:54 pm, solow wrote: > JS ERROR: > > Gebruikersagent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; > Trident/4.0) > Tijdstempel: Thu, 30 Jul

[jQuery] Re: jquery blocks javascript?

2009-07-30 Thread solow
JS ERROR: Gebruikersagent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0) Tijdstempel: Thu, 30 Jul 2009 22:52:44 UTC Bericht: Object doesn't support this property or method Regel: 18 Teken: 6 Code: 0 URI: http://www.waysoflife.eu/poker.php $(document).ready(function () {

[jQuery] Re: jquery blocks javascript?

2009-07-30 Thread solow
sorry for my extra post... but do you mean i should use live() on the li tags, in stead of my current javascript?

[jQuery] Re: jquery blocks javascript?

2009-07-30 Thread solow
please enlighten me on the usage. I dont understand how this could make it work

[jQuery] Re: jquery blocks javascript?

2009-07-30 Thread Ricardo
HTML added dynamically to the page does not "inherit" event handlers. Look into event delegation with live() or the livequery plugin: http://docs.jquery.com/Events/live On Jul 30, 1:46 pm, solow wrote: > so, now i post the url and the problem, and people still dont know the > problem? i really w

[jQuery] Re: jquery blocks javascript?

2009-07-30 Thread solow
so, now i post the url and the problem, and people still dont know the problem? i really want help :(

[jQuery] Re: jquery blocks javascript?

2009-07-29 Thread solow
Right, my bad. http://www.waysoflife.eu/poker.php This is the url. In the menu, click settings. What you see now, is a list. *To check the html, visit http://www.waysoflife.eu/pages/pages.php?settings *. This list should look like this: http://www.waysoflife.eu/merijn.html So maybe I've stated

[jQuery] Re: jquery blocks javascript?

2009-07-29 Thread Michael Geary
> From: solow > Nobody? Am at the source of jquery, and nobody knows this? :P I suspect that nobody was quite sure what the question was. I know I wasn't sure. If you could post a link to a test page instead of sample code, with a description of how to trigger the failure and how you expected it

[jQuery] Re: jquery blocks javascript?

2009-07-29 Thread solow
Nobody? Am at the source of jquery, and nobody knows this? :P