Hello! Please help how to make sure that the Search Form field was filled
and then the "Send" button was active?
Thank you in advance for any support!
Here's the Code:
<script language="javascript">
$(document).ready( function() {
$('#searchForm').bind( 'submit', function() {
bx_loading('searchForm', true);
var sQuery = $('input', '#searchForm').serialize();
$.post('searchKeywordContent.php', sQuery, function(data) {
$('#searchArea').html(data);
bx_loading('searchForm', false);
}
);
return false;
}
);
}
);
</script>