[jQuery] Re: Fire events programmatically

2008-09-12 Thread Huub
Right, is it to be a part of jQuery? I can use the extension Great. Regards, Huub On Sep 9, 4:40 pm, Richard D. Worth [EMAIL PROTECTED] wrote: Sounds like you may be interested in jquery.simulate: http://dev.jquery.com/view/tags/ui/latest/tests/simulate/jquery.simul... It will create

[jQuery] Re: Fire events programmatically

2008-09-09 Thread Huub
I don't think that trigger() does the trick. First of all i tested it. second, more important, things like createEvent, dispatchEvent,fireEvent do not appear in jQuery.js Regards, Huub On Sep 8, 11:11 pm, Josh Nathanson [EMAIL PROTECTED] wrote: Isn't that the same as this: $(#ID1

[jQuery] ZKOSS uses scriptaculous

2008-09-08 Thread Huub
$ to there liking $ = jQuery should not be part of the library Regards, Huub

[jQuery] Re: ZKOSS uses scriptaculous

2008-09-08 Thread Huub
h:script src=../script/jquery.js /h:script h:script jQuery.noConflict(); alert(jQuery(#${search.uuid}).attr(value)) /h:script works great thanks. On Sep 8, 4:54 pm, MorningZ [EMAIL PROTECTED] wrote: Maybe leave this shortcut to the higher level, let applicationbuilders define $ to there

[jQuery] Fire events programmatically

2008-09-08 Thread Huub
) { var evt = document.createEvent('HTMLEvents'); evt.initEvent( evttype, false, false); el.dispatchEvent(evt); } else if (document.createEventObject) { el.fireEvent('on' + evttype); } } looks like this trick is not yet in jQuery, perhaps for a reason? Huub

[jQuery] Re: Exec'ing JS In load()ed content for IE

2007-08-13 Thread huub fleuren
. Huub On 8/13/07, starmonkey [EMAIL PROTECTED] wrote: I'm using jQuery's load() function in order to pull content from the server and stick it into a div. This content has both html + javascript inside it, and I need to get the javascript actually evaluated for IE6+7. Firefox handles