<!DOCTYPE html> <html> <head> <script language="javascript" src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <style> .active{ color:red; } </style> <script language="javascript"> $(document).ready(function(){ $('div').text($('p').map(function(){ return $(this).text(); }).get()); }); </script> </head> <body> <p>chelsea</p> <p>Manchester UTD</p> <p>Real Madrid</p> <p>Barcelona</p> <div class="active"></div> </body> </html>