[jQuery] Re: ajaxStart() ajaxStop() problem

2009-08-21 Thread Brian FitzGerald
Was this ever resolved, by chance? I'm facing the same issue and I've been digging around the docs and online and haven't come up with a solution. I am using firefox 3, and I have tried, get(), load(), post (), and ajax(), and for each one the ajax events seem to fire for the first request only,

[jQuery] Re: calling functions between multiple document ready events

2009-05-29 Thread Brian FitzGerald
$.displayMessage(){ alert('hello world') } > > }); > > > $(function(){ > >    $.displayMessage(); > > }); > > > On May 29, 12:18 pm, Brian FitzGerald > > wrote: > > > I know that you can have more than on document ready event without &

[jQuery] calling functions between multiple document ready events

2009-05-29 Thread Brian FitzGerald
I know that you can have more than on document ready event without difficulty. i.e. $(function(){ // document ready 1 }); $(function(){ // document ready 2 }); The question I have is, is there any way for them to call functions from one to the other? The following does not work: $(functio