Hello,
I have a function in a JavaScript like so:
$("#table-filters li").click(function(){ *** Lots of stuff here...
});
What I would like to happen is when the page loads, to one-time, run that function. Something contained in:
$(document).ready(function() {
});
Suggestions?
Thanks!