[jQuery] Can I somehow see what events are binded to a DOM element?

2009-10-28 Thread jayarjo
I wonder if I can see somewhere what events are binded to a DOM element (in FireBug maybe). Maybe it's obvious, but I just don't know yet if it's even possible.

[jQuery] Re: Can I somehow see what events are binded to a DOM element?

2009-10-28 Thread jayarjo
-with-listhandlers/. Thumbs up! On Oct 28, 4:21 pm, Karl Swedberg k...@englishrules.com wrote: On Oct 28, 2009, at 7:45 AM, jayarjo wrote: I wonder if I can see somewhere what events are binded to a DOM element (in FireBug maybe). Maybe it's obvious, but I just don't know yet if it's even

[jQuery] Storing reference to an object using jQuery.data - any problems expected?

2009-10-23 Thread jayarjo
I want to store a reference to a particular object using jQuery.data on another object, can it potentially lead to memory leaks? And another question. Those objects at some point are dynamically removed and if that happens will the connection and associated data automatically be released, or we

[jQuery] Re: bubbling of triggered events... ?

2009-05-17 Thread jayarjo
, 2:49 am, Mike Nichols nichols.mik...@gmail.com wrote: can you show some code that isn't working On May 16, 6:21 am, jayarjo jaya...@gmail.com wrote: New in jQuery 1.3: All triggered events now bubble up the DOM tree. For example if you trigger an event on a paragraph

[jQuery] Re: routing event to html map

2009-05-17 Thread jayarjo
, infoaddicted jack.lapla...@gmail.com wrote: It would be helpful if you posted snippets of your HTML along with the JQuery code. On May 16, 12:26 pm, jayarjo jaya...@gmail.com wrote: I've got several map tags with custom areas defined and corresponding images with usemap attributes. The problem

[jQuery] Re: routing event to html map

2009-05-17 Thread jayarjo
I've found out (that gave me another hard hour), that in IE click event gets routed from image to associated map - automatically. I guess this issue should be handled by jQuery guys somehow. On May 17, 10:38 am, jayarjo jaya...@gmail.com wrote: Thanks. I've figured it out.The problem

[jQuery] bubbling of triggered events... ?

2009-05-16 Thread jayarjo
New in jQuery 1.3: All triggered events now bubble up the DOM tree. For example if you trigger an event on a paragraph then it will trigger on that element first, then on the parent element, and its parent, and so on up to the document. The event object will have a .target property equal to the

[jQuery] routing event to html map

2009-05-16 Thread jayarjo
I've got several map tags with custom areas defined and corresponding images with usemap attributes. The problem is that those images are covered with transparent div. I manually intercept events on that div and route them to the images underneath it. But maps do not seem to react to routed