[jQuery] Re: global functions

2008-03-06 Thread John Herr
I see, thanks. Register the function as a variable. I'm still getting my head wrapped around how liquid this all is. John Herr

[jQuery] Re: global functions

2008-03-06 Thread Karl Rudd
var blah; $(document).ready( function() { blah = function() { // do something... }; }); // ... somewhere after blah(); Karl Rudd On Fri, Mar 7, 2008 at 5:15 AM, John Herr <[EMAIL PROTECTED]> wrote: > > Hi, > > Love jQuery! > > I have two functions nested within $(document).re