JavaScript DHTML/Node Operation/removeRule

Материал из Web эксперт
Перейти к: навигация, поиск

"removeRule()" Example

   <source lang="html4strict">
   

<html> <body> <style>.myClass {background-color:red; font-decoration:bold;}</style> <script language="JavaScript">

   function function1() {
       document.styleSheets[0].removeRule(0);
   }

</script> <button onclick="function1();" class="myClass">Remove rule</button> </body> </html>


     </source>