is it possible to remove a CSS property of an element using JavaScript ?
e.g. I have div.style.zoom = 1.2,
now i want to remove the zoom property through JavaScript ?
|
|
|||||||||||||
|
|
Typically You cannot remove properties from built-in objects like that, and certainly not in IE (the zoom attribute of the style object is a IE extension) You can set it to the default value:
the effective zoom will now be whatever follows from the definitions set in the stylesheets (through link and style tags) So this syntax will only modify the local style of this element. |
|||
|
|
Note that the removeProperty method in Internet Explorer is supported from version 9 only, so it's better idea to use styleSheets object or setting an empty value. |
|||
|
|
|
You can use the styleSheets object:
Caveat #1: You have to know the index of your stylesheet and the index of your rule. Caveat #2: This object is implemented inconsistently by the browsers; what works in one may not work in the others. |
|||
|
No, there is no generally known way for modifying stylesheets from JavaScript. However, you can try finding all elements that have this class and setting the "zoom" property to "nothing". If you are using jQuery javascript library, you can do it with |
|||||||
|
|
Using jquery (http://jquery.com), one can completely remove an attribute from an element by:
Just include the jquery source before you run this line of code. Also, it's best to do that sort of thing after the document has fully loaded, doing so by this exact line:
, which also have to be included after the jquery source has been included. |
|||
|
|
|
As I understand it, sat wants a function to remove a particular class from an element. Most javascript libraries(JQuery, Prototype, Mootools etc) provide easy to use functions to do it. But the basic idea is simple: One can set & get classes of an element using
If you want to add a new class, do this:
If you want to remove a particular class say Name_Of_The_Class from an element then the code will be a little more complex.
|
|||
|
|
|
This should do the trick - setting the inline style to normal for zoom:
|
|||
|
|
|
actually, if you already know the property, this will do it... for example:
Note that this only works for inline styles... not styles you've specified through a class or something like that... Other note: you may have to escape some characters in that replace statement, but you get the idea. |
||||
|
|