I want to copy some CSS styles form one DIV, to another DIV.
Click on the "ONE" DIV
Then jQuery read list of CSS properties from ARRAY
Then copy these properties from DIV "ONE" to DIV "TWO".
This is my attempt, but it does not work. What's wrong with it?
HTML
<div class="one">Click HERE on this DIV, to TRANSFER CSS properties From this ONE</div>
<div class="two">To this TWO</div>
CSS
* {
background-color:gray;
}
.one {
color: red;
font-size:12px;
width: 100px;
height: 100px;
background-color: white;
margin: 20px;
padding: 20px;
font-weight: bold;
}
.two {
font-size:20px;
color: blue;
width: 200px;
height: 200px;
background-color: yellow;
margin: 20px;
padding: 20px;
}
jQuery
$(document).ready(function(){
$("div.one").click(function(){
var $array = ['color','width','height', 'background-color', 'font-weight', 'font-size'];
$(this).each( $array , function(item, value){
$("div.two").css(value, $(this).css(value));
});
});
});
