jQuery\'s \'live\' method is unable to handle multiple events. Does anyone know of a good workaround to attach multiple events to a function that polls current and future el
Try in this way:
("#button").bind("click keyup", function(){ // your code goes here })