I want to select all checkbox elements expect disabled ones,
checkbox
this is my html
I'd personally suggest this solution if you want select all rows except disabled one.
Just add this code in checkbox input(HTML)
onclick="$('input[name*=\'selected\']:not(:disabled)').prop('checked',this.checked);"