[jQuery] jQuery tabs: want ajax call to only fire once

2008-11-19 Thread nemozob
I'm using jQuery tabs and wanted to load the non-active tab content via ajax. It looks like the default method loads the remote content each time. What I'd like to do is have it load only once when the respective tab is clicked. I haven't explored other options yet but I imagine I can write a cus

[jQuery] Firefox/Mac scrollbar bug on slide effects

2007-11-09 Thread nemozob
http://lab.atomeye.com/ This only applies to Firefox on Macs. In the above example the first 'close' targets an element with 'overflow: auto;' and opens/closes it correctly. In the second example the element with 'overflow:auto' is nested and the scrollbar remains visible when the parent div cl

[jQuery] Re: Find first matching previous element relative to (this)

2007-11-05 Thread nemozob
> > On Nov 5, 2007, at 3:18 PM, Jonathan Sharp wrote: > > > .find() only searches down the tree (so child elements of .btn). > > You may need some combination of .parents() or .siblings(). > > > Cheers, > > -Jonathan > > > On 11/5/07, nemozob <[EMAIL P

[jQuery] Find first matching previous element relative to (this)

2007-11-05 Thread nemozob
Hi, I'm trying to target the closets instance of an element with a class name target but I'm having trouble figuring out how to do this. So given this HTML how are you? hello how are you? <-- want to target this paragraph I am fine button I'm trying to use something like the following