Reputation: 1753
I have query related jquery. My designer user uniform and i want to remove it form one element at run time with the help jquery. uniform : http://uniformjs.com/ like
<input type="checkbox" class="abc">
I know how to apply but don't know how to remove
apply :
jQuery(".interactionClassNow").uniform();
Remove ?
Upvotes: 6
Views: 5302
Reputation: 11
The correct syntax for doing this is :
jQuery(".interactionClassNow").uniform.remove();
Upvotes: 1
Reputation: 27614
You can use remove() method to run time dynamically remove element
$(".interactionClassNow").remove();
Upvotes: -2