Pages

Apr 22, 2016

Using Jquery hiw To get values In A Text Box On “Keyup” Event


How to Get Values In A Text Box On “Keyup” Event using jquery


<input type=”text” id=”keywords” value=””/>
<script>
jQuery(“#keywords”).keyup(function(e)
{
var searchbox = jQuery(this).val();
alert(searchbox);
});
</script>

No comments: