Online jQuery Editor

<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").filter(".myclass").css("background-color", "gray"); }); </script> </head> <body> <h1>Tutorialspoint</h1> <p class="myclass">Free Text Tutorials</p> <p>Free Video Tutorials</p> <p>Connecting Tutors</p> </body> </html>