I want to get the following style of an element and add it to the input value.
add the value of the CSS property to enter value , where the property is equal to the input value of name .
Here is my div where I want to get the style from
<div class="styler"> <h3 style="color:#555;font-size:30px;font-family:'open sans';"> I am Heading </h3> </div>
And this is the entry where I want to add my styles
<div class="myStyle"> <input name="color" /> <input name="font-size" /> <input name="font-family" /> </div>
source share