pop-up as value is entered in text box using jquery

Posted by Jean on Stack Overflow See other posts from Stack Overflow or by Jean
Published on 2010-04-27T11:26:09Z Indexed on 2010/04/27 11:33 UTC
Read the original article Hit count: 159

Filed under:

Hello,

When the value is entered, I want an alert, its a copy/paste text box, using jquery

('#test).bind('onblur',function(){
  var h = ('#test).attr('value');
alert(h);
});


<input type=text id=test>

Thanks Jean

© Stack Overflow or respective owner

Related posts about jQuery