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 .class Selector</h1> <p class="point">This is paragraph</p> <div>This is div</div> <a href="/css" class="point">Learn CSS</a> <script> $(document).ready(function(){ $(<span class="cStr">".point"</span>).css("color","green"); }); </script> </body> </html>
OUTPUT
×

Save as Private