Use css() method to get css value - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:css

Description

Use css() method to get css value

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials