Javascript examples for jQuery Method and Property:css
Use css() method to get css value
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ console.log($("p").css("color")); });//from ww w .j a v a 2 s.c om }); </script> </head> <body> <button>Return CSS color value of p element</button> <p style="color:red">This is a paragraph.</p> </body> </html>