Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
2  
Events aren't "active", they're raised. – StuperUser Oct 13 '11 at 16:30
Ahh, i dont know the terminology. Thanks for letting me know. – cnotethegr8 Oct 13 '11 at 16:37
need some of the variables to be in-scope do 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 named e), 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

5 Answers

up vote 20 down vote accepted

you can bind to multiple events by separating them with a space:

$(":input").bind("keyup change", function(e) {
    // do stuff!
})

docs here.

hope that helps. cheers!

share|improve this answer
Perfect! Thanks. – cnotethegr8 Oct 13 '11 at 17:51
why does bind not work for me? jsfiddle.net/nalagg/vFREk – t q May 10 '12 at 2:02

You could subscribe for the change and keyup events:

$(function() {
    $(':input').change(myFunction).keyup(myFunction);
});

where myFunction is the function you would like executed:

function myFunction() {
    alert( 'something happened!' );
}
share|improve this answer

Do this.

$(function(){
    var myFunction = function()
    {
        alert("myFunction called");
    }

    jQuery(':input').change(myFunction).keyup(myFunction);
});
share|improve this answer
change() and keyup() return the wrapped set, so you can chain that. – StuperUser Oct 13 '11 at 16:32
You could, couldn't you. Thanks. – brenjt Oct 13 '11 at 16:33
the chain also eliminates the second query through the DOM. – keeganwatkins Oct 13 '11 at 16:34

That's not how events work. Instead, you give them a function to be called when they happen.

$("input").change(function() {
    alert("Something happened!");
});
share|improve this answer

Write a single function and call it for both of them.

function yourHandler(e){
    alert( 'something happened!' );        
}
jQuery(':input').change(yourHandler).keyup(yourHandler);

The change() and keyup() event registration functions return the original set, so they can be chained.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.