Please explain remove class jquery with example?
$("#buttonID").click(function(){
$("YOUR_TAG_OR_CLASS_OR_ID").removeClass("YOUR_CLASS_NAME");
});
BY Best Interview Question ON 15 Feb 2019
$("#buttonID").click(function(){
$("YOUR_TAG_OR_CLASS_OR_ID").removeClass("YOUR_CLASS_NAME");
});