Find us on facebook

Aug 1, 2014

Check box change event in JQuery

<script>

$(document).ready(function () {
$(":checkbox").change(function()
{
var value =$(this).val();
var check = $(this).attr('checked');
console.log("Change: " + name + " to " + check);
});
});
</script>

No comments:

Post a Comment