HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery first() Method</h1> <p>This is paragraph1</p> <div style="border: 1px solid black;"> <p>This is paragraph2</p> <p>This is paragraph3</p> </div> <p>This is paragraph4</p> <script> $(document).ready(function(){ $("div p").first().css("color", "blue"); }); </script> </body> </html>
OUTPUT
×

Save as Private