[jQuery] Re: data cache and tag attributes

2008-09-04 Thread Paul Carey
I explored this in a little more detail (specifically, adding non standard attributes to HTML markup), and wrote up my thoughts. http://pa.ulcarey.com/articles/2008/09/04/illegally-embedding-attributes-for-fun-and-profit On Sep 2, 8:33 am, Paul Carey [EMAIL PROTECTED] wrote: Very helpful

[jQuery] Re: data cache and tag attributes

2008-09-02 Thread Paul Carey
Very helpful, thanks for the response. Paul On Aug 28, 12:16 pm, Richard D. Worth [EMAIL PROTECTED] wrote: Some downsides to using expandos (arbitrary attribute key/value pairs on DOMElements): 1) possible memory leaks 2) keyname choice is limited because of built in attributes/properties

[jQuery] Re: callback executed before effect ended

2008-08-27 Thread Paul Carey
problem is that next element appears while current element is still fading out, any idea what i'm doing wrong? Maybe you could add display:none; to the current css class. Paul

[jQuery] data cache and tag attributes

2008-08-27 Thread Paul Carey
Hi I've been setting arbitrary attributes on my html tags, and using jQuery to make AJAX requests based on their values. These has worked well so far as writing out arbitrary attributes from the backend is trivial. But I'm about to start using per element attributes more intensively, and now