for submit form on change jquery
<script>
$(document).ready(function() {
alert("hello");
$('#catname').change(function() {
$('form').submit();
});
});
</script>
<script>
$(document).ready(function() {
alert("hello");
$('#catname').change(function() {
$('form').submit();
});
});
</script>
No comments:
Post a Comment