how to remove css from element using jquery
$('#tag-id').removeAttr('style');how to remove css from element using jquery
$('#tag-id').removeAttr('style');jQuery remove a CSS style
//removing css with jQuery. i.e: set to default 
$( "#myElementID" ).css("background-color", "");//just blank it outhow to remove css from element using jquery
$("body").removeAttr("style");jquery remove css
$("#id .class").css({ 'background-color' : '' });
/* 
   As mentioned in the jquery documentation:
   Setting the value of a style property to an empty string  
   removes that property from an element 
   if it has already been directly applied
   e.g. $('#mydiv').css('color', '')
*/Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
