Save all css properties of element using jquery
Posted
by pixelboy
on Stack Overflow
See other posts from Stack Overflow
or by pixelboy
Published on 2010-05-03T13:19:43Z
Indexed on
2010/05/03
15:48 UTC
Read the original article
Hit count: 190
jQuery
|css-selectors
I'm basically trying to save all current css properties of an element in a local var/array. I tried :
el.css();
and
el.css("*");
With no luck.
Is there any quick tip do to so ?
© Stack Overflow or respective owner