jQuery removeClass Method
home
Run
screen_rotation
fullscreen
cloud_download
<!DOCTYPE html> <html> <head> <title>jQuery Demo example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $( "#removeClassExample" ).on( "click", function(event) { $("#removeClass").removeClass('myClass'); }); }); </script> <style> div{ margin:10px; min-height:50px; min-width:100%; border:1px solid blue; float:left; } .myClass{ border:1px solid red; background:green; } </style> </head> <body> <h4 ><a href="javascript:void(0);" id="removeClassExample">Click to run .removeClass() Example </a></h4> <div id="removeClass" class="myClass"> Add Class to this div... </div> </body> </html>
<!DOCTYPE html> <html> <head> <title>jQuery Demo example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $( "#removeClassExample" ).on( "click", function(event) { $("#removeClass").removeClass('myClass'); }); }); </script> <style> div{ margin:10px; min-height:50px; min-width:100%; border:1px solid blue; float:left; } .myClass{ border:1px solid red; background:green; } </style> </head> <body> <h4 ><a href="javascript:void(0);" id="removeClassExample">Click to run .removeClass() Example </a></h4> <div id="removeClass" class="myClass"> Add Class to this div... </div> </body> </html>
Copyrights@tutorialsplane.com