Advertisement
Advertisement
| 07.10.2008 at 08:16AM PDT, ID: 23554098 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: |
$(document).ready(function() {
// check if any radio button value is changed
$("input[@type='radio']").bind("change", function() { alert ("Some radio value is changed"); });
// check if any checkbox value is changed
$("input[@type='checkbox']").bind("change", function() { alert ("Some checkbox value is changed"); });
});
|