Javascript examples for jQuery Method and Property:css
Use the css() method to add a pink background color to <p>.
<!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").css("background-color", "pink"); });// ww w .jav a 2 s . c om </script> </head> <body> <p>This is a paragraph.</p> </body> </html>