I\'ve got the following code to trigger a click event on some radio buttons! but it doesn\'t get fired! can any one help me with this!
CODE :
Personally, for me, the best solution for a similar issue was:
HTML
JQuery
var $selectAll = $( "input:radio[name=selectAll]" );
$selectAll.on( "change", function() {
console.log( "selectAll: " + $(this).val() );
// or
alert( "selectAll: " + $(this).val() );
});
*The event "click" can work in place of "change" as well.
Hope this helps!