- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to apply multiple CSS properties using jQuery?
Apply multiple CSS properties using a single JQuery method CSS( {key1:val1, key2:val2....). You can apply as many properties as you like in a single call.
Here is the syntax for the method −
selector.css( {key1:val1, key2:val2....keyN:valN})
Here you can pass key as property and val as its value as described above.
Example
You can try to run the following code to learn how to apply multiple CSS properties using jQuery:
<html> <head> <title>jQuery CSS</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("li").eq(2).css({"color":"red", "background-color":"green"}); }); </script> </head> <body> <div> <ul> <li>list item 1</li> <li>list item 2</li> <li>list item 3</li> <li>list item 4</li> <li>list item 5</li> <li>list item 6</li> </ul> </div> </body> </html>
- Related Articles
- How to apply CSS properties using jQuery?
- How to apply CSS style using jQuery?
- How to define multiple CSS attributes in jQuery?
- How to change CSS using jQuery?
- How to Apply Shadow Effect on Text Using CSS?
- How to apply inline CSS?
- How to Play and Pause CSS Animations using CSS Custom Properties?
- How to remove all CSS classes using jQuery?
- How to remove all CSS classes using jQuery?
- How to apply CSS to iframe?
- How jQuery selects elements using CSS?
- How to iterate a JavaScript object's properties using jQuery?
- How to include multiple js files using jQuery $.getScript() method?
- How to set background image in CSS using jQuery?
- How to inherit CSS properties of parent Element using JavaScript?

Advertisements