Sometimes you need to add or change CSS after Javascript events fire, For example clicks, hover. Using jQuery, you can simply change CSS to any elements. Or you might want to get CSS for the selected element based on condition.
In this article, I will show you how you can add new CSS, change or get CSS of any element using jQuery. jQuery has css() method which is used to manipulate CSS.
$(selector).(propertyname, propertyvalue);
In the below example, first p element has style background-color:green and second p element doesn't have any background-color property. If the property doesn't have any property name, it will set property value else it will change CSS for the selected all elements.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>jQuery css() method</h1>
<p style="background-color: green;">This element have background-color property as green</p>
<p>This element doesn't have any background-color property</p>
<button id="btn">Change background-color property</button>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('button').on('click', function() {
$('p').css('background-color', 'red');
});
});
</script>
</body>
</html>
If you want to find any property value for the selected element, remove second parameter. If there are more than one matched selector, it will return property value from first matched selector. If the selected element doesn't has any property, then it will return default value.
$(selector).(propertyname);
Below example will return the property value for the first p element.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>jQuery css() method</h1>
<p>This element doesn't have any background-color property</p>
<p style="background-color: green;">This element have background-color property as green</p>
<button id="btn">Get background-color property</button>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('button').on('click', function() {
var bgColor = $('p').css('background-color');
alert('p element has background-color property as '+bgColor);
});
});
</script>
</body>
</html>
I hope it will help you.
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
How to create Sitemap Format
Sitemap is a blueprint of your website t...How to convert html to pdf laravel 5.4
Today laravelcode share with you how to...How to Install and Configure MongoDB on Ubuntu
In this article, we will share with you...Laravel 8 - Multi Authentication API with Example
In this tutorial, I would like share wit...Angular9 - Routing And Navigation Example
1. Introduction to Angular 7|8|9 Routing...