I have a question concerning style/compactness. I have a function which I want to run once when my document loads, and also whenever an event is triggered.
My code looks something like this:
$('.myClass').each(function(){my_function(etc);});
$('.myClass').keyup(function(){my_function(etc);});
I'm wondering if there is a way to combine these two lines of code into one. It works fine at present, but the fact that I'm repeating code has me thinking that there could be a more succinct way to do this.
.bind() and .on() gave me no joy. I am assuming this is because they're intended for events, and .each() isn't an event.
Can anybody offer any insight? Cheers
keyupevent as part of page initialization? – nrodic Sep 23 '12 at 23:37