'removeRule()' Example : removeRule : Javascript Methods : JavaScript Reference examples (example source code) Organized by topic

JavaScript Reference
C++
PHP
JavaScript Reference Home »  Javascript Methods   » [  removeRule  ]   
 



'removeRule()' Example

    
<html>
<body>
<style>.myClass {background-color:red; font-decoration:bold;}</style>
<script language="JavaScript">
    function function1() {
        document.styleSheets[0].removeRule(0);
    }
</script>
<button id="myB" onclick="function1();" class="myClass">Remove rule</button>
</body>
</html>

    
      
      
Related examples in the same category
1.  'removeRule()' Syntax, Parameters and Note
2.  'removeRule()' is applied to
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.