javascript - .prop("checked", false) doesn't work perfectly -
in order uncheck radio button jquery...
i use code :
$('input[type=radio][name=belvg_customerattributes_particulier]:checked').prop("checked", false);
this code works visualy still see button on checked.
i tried :
$('input[type=radio][name=belvg_customerattributes_particulier]:checked').prop("checked", false).checkboxradio("refresh");
but in vain..
please me !
so works... have investigated , have seen class before imput.
so radio checked not visualy.
for information have added code remove class in span :
$("#uniform-belvg_customerattributes_particulier_0 span.checked").toggleclass("checked");
thanks !
Comments
Post a Comment