I really need help with binding keyup with other events. The part of the code I am having trouble with is here:
$("#INPUTID")
.bind("mouseenter keyup mouseleave blur",
function () {
For now, it ignores every except keyup, but I want it to use everything, including mouseenter, keyup, mouseleave and blur. I need to do this for a project ASAP, so help would be appreciated.
Thanks!