[jQuery] Re: ajax/jquery

2008-03-08 Thread the_woodsman
Well, you'll have to make all your forms work traditionally, and use JQ to override them, using things like the ajax form plugin etc. Similiarly, any UI widgets you use should build themselves from existing markup on the page. For very complicated interfaces, it might be easier to provide a pure

[jQuery] Re: ajax/jquery architectural question

2007-11-30 Thread Wil Everts
A way to do this w/o adding another plugin is as follows. I'm sure there are situations where livequery outperforms this perhaps but I haven't needed it yet... Say I'm loading script.html and I want my function, called bobFun, to be applied to the newly loaded content... //here's your function va

[jQuery] Re: ajax/jquery architectural question

2007-11-30 Thread tlphipps
In our app we include all jquery/javascript code in our "main" page rather than loading more scripts via AJAX. We can then manipulate the new content (loaded via AJAX) using those already existing scripts, functions, etc. As far as binding events to this new content, we generally use the liveque

[jQuery] Re: ajax/jquery architectural question

2007-11-30 Thread Marshall Salinger
You should look at the Live Query plug-in. http://brandonaaron.net/docs/livequery/ Hope that helps. -Marshall spherop wrote: i am loving jquery and the foray into a very ajax centric development approach. i am stuck though on a key architectural question. my app loads different aspects o