jQuery Simple Example
HTML
<label for="search_field">Address</label>
<input type='text' onkeyup="show()" />
JavaScript
$(document).ready(function() {
function show()
{
alert('sdf');
}
});
<label for="search_field">Address</label>
<input type='text' onkeyup="show()" />
$(document).ready(function() {
function show()
{
alert('sdf');
}
});