Using jQuery i would like to run a function when either .change() or .keyup() are raised.
Something like this.
if ( jQuery(':input').change() || jQuery(':input').keyup() )
{
alert( 'something happened!' );
}
EDIT
Sorry i forgot to mention. Both .change() and .keyup() need some of the variables to be in-scope.
need some of the variables to be in-scopedo you mean variables from the event or variables you're using when you're registering these events handlers? You get the event variables in the event parameter (usually namede), else you might need to keep them at the window level or data on the element until the events are raised, or look at closures. – StuperUser Oct 13 '11 at 16:48