6

Manipulating CSS using jQuery css method

 1 year ago
source link: https://www.laravelcode.com/post/manipulating-css-using-jquery-css-method
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Manipulating CSS using jQuery css method

  445 views

  1 year ago

jQuery

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.

Syntax:

$(selector).(propertyname, propertyvalue);

Example:

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.

Syntax:

$(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.

Author : Harsukh Makwana
Harsukh Makwana

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]


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK