jQuery Simple Example

by Muhammad Mushtaq Sheikh

HTML

<label for="search_field">Address</label>
<input type='text' onkeyup="show()" />

JavaScript

$(document).ready(function() {
  function show()
  {
  alert('sdf');
  }
});