Javascript examples for jQuery Method and Property:css
Copy an inline css attribute and paste it as html
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.7.1.js"></script> <script type="text/javascript"> $(window).load(function(){/*from www.j a va 2s .c o m*/ $('span.my > strong').css('background-color', $('span.my').css('background-color')); }); </script> </head> <body> <span class="my" style="background-color: red;"> <strong>paste here</strong> <em></em> </span> </body> </html>