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

2009-10-28 Thread jayarjo
vents-with-listhandlers/. Thumbs up! On Oct 28, 4:21 pm, Karl Swedberg 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

[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] 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 g

[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 wrote: > Thanks. I've figured it out.The problem is, t

[jQuery] Re: routing event to html map

2009-05-16 Thread jayarjo
6, 9:51 pm, infoaddicted wrote: > It would be helpful if you posted snippets of your HTML along with the > JQuery code. > > On May 16, 12:26 pm, jayarjo wrote: > > > I've got several map tags with custom areas defined and corresponding > > images with usemap attrib

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

2009-05-16 Thread jayarjo
$('#one').trigger('click'); it took me sometime to figure this out, ' cause it was not stated anywhere. Why - body tag is not considered as parent? On May 17, 2:49 am, Mike Nichols wrote: > can you show some code that isn't working > &

[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 events

[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