To attach change event to an element, change()
method can be used that fires when the element value is changes.
<script>
$("#dropChange").change(function () {
alert("change handler called");
});
</script>
Above code snippet find the dropdown whose id is "dropChange" and attach change event. When this drop down value changes, the defined function fires that shows "change handler called" message in the JavaScript alert box.
Views: 6176 | Post Order: 61