[jQuery] Re: calling functions inside pages loaded by AJAX

2008-08-22 Thread gregg
Josh: Sorry, I did use $(document).ready not $(document).ready; that was a typo -- my bad. When I use $(document).ready inside the html being loaded by ajax, it seems to get invoked as soon as ajax reads the script block; not when the page has been fully loaded and it's items added to the DOM.

[jQuery] Re: calling functions inside pages loaded by AJAX

2008-08-20 Thread Josh Nathanson
Gregg, try $(document).ready instead of $('document').ready and see how that works. -I can't figure out how to make a call from the loading page into the loaded page; everything I try it seems the script functions from the loaded page are not known by the DOM. Check this link:

[jQuery] Re: calling functions inside pages loaded by AJAX

2008-08-20 Thread GasGiant
I use the .ajaxStop() to load functions for the markup inside of the AJAX delivered parts. On Aug 20, 1:48 pm, gregg [EMAIL PROTECTED] wrote: I have an application which uses JQuery to load an HTML page through AJAX. I have logic, implemented as javascript functions, inside the page being

[jQuery] Re: calling functions inside pages loaded by AJAX

2008-08-20 Thread GasGiant
http://docs.jquery.com/Ajax/ajaxStop#callback