[jQuery] Re: Fade Function Works in Firefox but Not in Safari?

2007-11-04 Thread Vik_R
They do take easing arguments, and it works great! It requires the jquery.easing plugin. Wizzud wrote: As far as I'm aware, fadeIn and fadeOut don't have easing arguments so you should probably start by removing those. This would at least ensure that the fadeIn is only getting a speed

[jQuery] Re: Fade Function Works in Firefox but Not in Safari?

2007-11-03 Thread Vik_R
It's got something to do with the HTML that's being loaded via the ajax call - if I just load some plain text, everything works fine. The text I'm trying to load has a lot of nested divs. I'll take a look at them for anomalies. -- View this message in context:

[jQuery] Fade Function Works in Firefox but Not in Safari?

2007-11-03 Thread Vik_R
This code works perfectly in Firefox, but in Safari, after the element fades in, it fades out again! The alert call only fires once, so it doesn't even seem like my call to fadeOut is even called a second time. Here's the code. function ScrollToDiv(theDivID) { $(html,body).animate({

[jQuery] Newbie Question: Callback for Load Only Works the First Time Load is Called?

2007-10-30 Thread Vik_R
I've got some code that uses load to add some help info to a page when the user clicks on a help button. I pass the current contents of the div to the php function that provides the help info. The php function checks the current contents, and if it sees that the help info is already on the

[jQuery] Re: Newbie Question: Callback for Load Only Works the First Time Load is Called?

2007-10-30 Thread Vik_R
That worked. Thanks! -- View this message in context: http://www.nabble.com/Newbie-Question%3A-Callback-for-Load-Only-Works-the-First-Time-Load-is-Called--tf4720377s27240.html#a13501834 Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Newbie Question: Specifying the links that are in a particular Div?

2007-10-29 Thread Vik_R
I'd like to attach an onclick function to the links that are in a specific div. The id of the div is menu. I tried variations on this: $(document).ready(function(){ $(#menu).(a).click(function(){ alert(Thanks for visiting!); }); }); ...but I was just guessing, and

[jQuery] Re: Newbie Question: Specifying the links that are in a particular Div?

2007-10-29 Thread Vik_R
Thanks very much, guys! -- View this message in context: http://www.nabble.com/Newbie-Question%3A-Specifying-the-links-that-are-in-a-particular-Div--tf4713851s27240.html#a13480579 Sent from the jQuery General Discussion mailing list archive at Nabble.com.