shellymonkey
New Member
I'm wondering if I can fire off both of these events together :\[code\]$("input[type=checkbox]").click(function(){ if($(this).is(":checked")) { //Value of checkbox alert(this.value); }});\[/code\]and\[code\]$("input[type= 'text']").keyup(function(){ alert(this.value);});\[/code\]I looked into .bind, but that seems to only work for one selected elements (i.e. \[code\]$(p).bind("mouseout mouseenter).doSomething())\[/code\].The situation I am running into is that I have a function that needs to fire anytime either one of these things occur.