Find the text in the first paragraph (stripping out the html), then set the html of the last paragraph to show it is just text (the red bold is gone).
<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ var str = $("p:first").text(); $("p:last").html(str); }); </script> <style> .selected { color:red; } .highlight { background:yellow; } </style> </head> <body> <body> <p class="selected highlight">Hello first</p> <p class="">Hello</p> </body> </html>