- 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 add and remove HTML attributes with jQuery?
To add and remove HTML attributes with jQuery, use the addClass() and removeClass() method.
You can try to run the following code to add and remove HTML attributes with jQuery −
Example
<html> <head> <title>jQuery Example</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script type = "text/javascript"> $(document).ready(function(){ $( '#add' ).click( function () { $('#page_navigation1').addClass( 'blue-class' ); }); $( '#remove' ).click( function () { $('#page_navigation1').removeClass( 'blue-class' ); }); }); </script> <style> .blue-class { background-color: blue; font-size: 30px; } </style> </head> <div id="page_navigation1">Demo</div> <button id="add">Add</button> <button id="remove">Remove</button> </html>
- Related Articles
- How to add attributes to an HTML element in jQuery?
- How to remove all the attributes of an HTML element using jQuery?
- How to remove all style attributes using jQuery?
- How to add and remove a class to an anchor tag with jQuery?
- How to Add and Remove multiple classes in jQuery?
- Remove and add new HTML Tags with JavaScript?
- How to add jQuery code to HTML file?
- How to remove underline with jQuery?
- How to add display:none in an HTML element using jQuery?
- How to define multiple CSS attributes in jQuery?
- How to use height and width attributes in HTML?
- How to use min and max attributes in HTML?
- Store and retrieve arrays into and from HTML5 data attributes with jQuery?
- jQuery remove() with Examples
- HTML Attributes

Advertisements