Can you make a demo out of this ? Please put the unminified version of jQuery 1.3.2.
-- Ariel Flesler On Apr 8, 4:12 pm, Paul Thiel <pjth...@gmail.com> wrote: > 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: > > $().bind('show.palette', function() { > alert('showing palette!'); > > }); > > $.event.trigger('show.palette'); > > What am I missing? Namespacing your events should be just fine in > this scenario, right?