<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery Select Element by ID</title> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script> $(document).ready(function(){ // Highlight element with id mark $("#mark").css("background", "blue"); }); </script> </head> <body> <p>Selecting Elements by ID.</p> <p id="mark">A paragraph</p> <p>A another paragraph</p> </body> </html>