javascript - attribute equals selector is not recognized in safari 5.1.7 -
i using below code find particular row it's attribute. not working in safari 5.1.7 brower,it throws error syntax error, unrecognized expression: #groups tr[data-group_mandatory="true"
$('#groups tr[data-group_mandatory="true"').each(function(){ // logic here. });
you missing closing square bracket, please right below :
$('#groups tr[data-group_mandatory="true"]') ^-- bracket missing javascript jquery css safari
No comments:
Post a Comment