[jQuery] AJAX & callbacks: load(); $.get() and $.post() do not

2009-10-13 Thread alexryan
$.get() and $.post() functions work for me *except* when I supply a callback function as the third parameter. I can pass in exactly the same set of arguments that work for a load() function to $.get() and $.post() and they do not work. Has anyone else experienced this? If so, does anyone have a wo

[jQuery] Re: How to wait until the DOM has been updated by a jquery "load" before executing subsequent JavaScript?

2009-09-16 Thread alexryan
That was it. Thank you Mike.

[jQuery] How to wait until the DOM has been updated by a jquery "load" before executing subsequent JavaScript?

2009-09-16 Thread alexryan
Newbie question: I'm using JQuery's load function to update a portion of my page with new content. This works okay but I would also like to attach event handlers to the newly loaded content after it is loaded. There is probably a best practice approach to doing so but I am not aware of it. If som