How to remove a class from a check in a jQuery Mobile Table -
i have check box inside jquery mobile table id of deletetable
, has following class added it:
i want remove class ui-checkbox
have following code:
$("tabledelete input[type='checkbox'] div").removeclass("ui-checkbox");
but somehow doesn't seem work , i'm sure why.
you try :
$("tabledelete .ui-checkbox").removeclass("ui-checkbox");
on other hand, mustn't doing this. if dont want styling applied element, example, checkbox, must have data-role=none
in it.
Comments
Post a Comment