We can remove css class in
jquery like this-
Suppose we a “div” control like
this :
<div id="divGrid" class="gridtable">
This is Test
</div>
Here how we remove class from
div-
$("#divGrid").removeClass("gridtable");
This is a technical blog for helping in web design, software development and many more.