Skip to content

jQuery plugin to copy all styles (inline, inherited, etc) from one DOM element to another.

Notifications You must be signed in to change notification settings

moagrius/copyCss

Folders and files

NameName
Last commit message
Last commit date
Jan 6, 2014
Sep 12, 2014
May 21, 2014

Repository files navigation

jQuery.copyCSS

Quick, simple jQuery extension to retrieve or copy all styles (with optional whitelist and blacklist) from an HTML element.

Tested in Chrome, FireFox, Safari, IE6-9. Thanks to Vincent (link unknown) who tested and provided a fix for Opera.

Usage:

$('#some-element').copyCSS('#another-element');  // copy all styles
$('#some-element').copyCSS('#another-element', ['top', 'left']);  // copy just top and left
$('#some-element').copyCSS('#another-element', null, ['top', 'left']);  // copy everything except top and left

This method can be a resource hog. Try to use the whitelist parameter if possible.

About

jQuery plugin to copy all styles (inline, inherited, etc) from one DOM element to another.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published