jim wrote:
Didn't realize document.ready wasn't an event...thanks Mike

I can think of solutions to the problem but in general was trying todo
something like:

[...]
How about this:

function ready() {
 // do generic stuff
}
$(function() {
 ready();
});

// optional assert, overwrites generic stuff
function ready() {
 // do other stuff
}

--
Jörn Zaefferer

http://bassistance.de

Reply via email to