Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript jQuery: keypress event should only function once Re: jQuery: keypress event should only function once

#138904
pixelgrid
Participant

$(‘input’).bind(‘keyup’,function(event){
//Show second input
$(this).unbind(event);
});