Why didn't on.click work on the element in bootstrap modal?
HTML:
<input type="radio" ng-model="idCV" name="file" value="" required> Jquery:
$(function(){ $('input[type="radio"]').on('click', function(){ alert('f'); }); }); Why didn't on.click work on the element in bootstrap modal?
HTML:
<input type="radio" ng-model="idCV" name="file" value="" required> Jquery:
$(function(){ $('input[type="radio"]').on('click', function(){ alert('f'); }); }); Source: https://ru.stackoverflow.com/questions/420472/
All Articles