1 2 3 4 5 6 7 8 | jQuery('#myfrom').on('click','.enable_upload',function(e) { if(jQuery(".enable_upload").is(':checked')) alert('checked'); else alert('Not checked'); }); |
1 2 3 4 5 6 7 8 | jQuery('#myfrom').on('click','.enable_upload',function(e) { if(jQuery(".enable_upload").is(':checked')) alert('checked'); else alert('Not checked'); }); |
Last articles