[jQuery] Triggering a namespaced event

2009-04-08 Thread Paul Thiel
Hi guys. Using jQuery 1.3.2 and getting some unexpected behavior this morning. This works, with the alert being executed when the showpalette event is triggered. $().bind('showpalette', function() { alert('showing palette!'); }); $.event.trigger('showpalette'); However, this does NOT work:

[jQuery] jQuery.event.trigger()

2009-04-08 Thread Paul Thiel
Hi guys. Trying again as not sure what happened to the previous post. I am using jQuery 1.3.2 and getting some unexpected behavior this morning. This works, with the alert being executed when the showpalette event is triggered. $().bind('showpalette', function() { alert('showing palette!');

[jQuery] Re: jQuery.event.trigger()

2009-04-09 Thread Paul Thiel
Flesler > > On Apr 8, 4:52 pm, Paul Thiel wrote: > > > Hi guys. > > > Trying again as not sure what happened to the previous post. > > > I am using jQuery 1.3.2 and getting some unexpected behavior this > > morning. > > > This works, with

[jQuery] Re: Triggering a click

2008-09-05 Thread Paul Thiel
At a glance it looks as though you are targeting the wrong element. The parent() takes you to the DIV and the next() takes you to the next DIV (awardnomination). Just use $(this).prev('img').trigger('click') or similar. On Sep 5, 9:06 am, jerpod <[EMAIL PROTECTED]> wrote: > I've got some html th