Javascript examples for jQuery Method and Property:css
Use the css() method to add a 5 pixels, red dotted border 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("border", "5px dotted red"); });//ww w . j a v a2 s . c o m </script> </head> <body> <p>This is a paragraph.</p> </body> </html>