[jQuery] newbie plugin question

2009-11-16 Thread echobase
Hi- I'm just getting into jQuery plugins and I wanted to do a sort of 'hello world' exercise with a barebones plugin template. My template code is below but I can't get the console.log statement in the setup() function to show in a firebug console window. IIf I put a console.log statement immediat

[jQuery] Re: Calling a jQuery function from within an ajax-loaded div

2008-03-28 Thread echobase
e SCRIPT tags arent > interpreted by jquery, so you have to load the script separately. > > On Mar 27, 4:10 pm, echobase <[EMAIL PROTECTED]> wrote: > > > I'm loading a div using this .ajax function: > > > $.ajax({ > > type: "GET", > &

[jQuery] Calling a jQuery function from within an ajax-loaded div

2008-03-27 Thread echobase
I'm loading a div using this .ajax function: $.ajax({ type: "GET", contentType: "html", url: url, async: true, success: function (conf) { $("#myDiv").html( conf );} }); In that url that's being loaded I have this jQuery function: $(document).ready(function() {