Is there a way in jQuery to get all CSS from an existing element and apply it to another without listing them all?
I know it would work if they were a style attribute with attr(), but all of my styles are in an external style sheet.
|
Is there a way in jQuery to get all CSS from an existing element and apply it to another without listing them all? I know it would work if they were a style attribute with |
||||
|
|
|
A couple years late, but here is a solution that retrieves both inline styling and external styling:
Pass a jQuery object into css() and it will return an object, which you can then plug back into jQuery's $().css(), ex:
:) |
|||||||||||||||||||||
|
|
Two years late, but I have the solution you're looking for. Not intending to take credit form the original author, here's a plugin which I found works exceptionally well for what you need, but gets all possible styles in all browsers, even IE. Warning: This code generates a lot of output, and should be used sparingly. It not only copies all standard CSS properties, but also all vendor CSS properties for that browser.
Basic usage is pretty simple, but he's written a function for that as well:
Hope that helps. |
|||||||||||||||
|
|
Why not use |
|||||||||||||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.