I have the following where I bind the same event to 3 elements. Is there a way to have the selectors do this in 1 line , like a "OR" in the selector?
$('.fundLoad').keyup(queryRequest);
$('.fundName').keyup(queryRequest);
$('.companyName').keyup(queryRequest);