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);
alert(searchbox);
});
</script>