Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery removeAttr() Method

❮ jQuery HTML/CSS Methods

Example

Remove the style attribute from all <p> elements:

$("button").click(function(){
  $("p").removeAttr("style");
});
Try it Yourself »

Definition and Usage

The removeAttr() method removes one or more attributes from the selected elements.


Syntax

$(selector).removeAttr(attribute)

Parameter Description
attribute Required. Specifies one or more attributes to remove. To remove several attributes, separate the attribute names with a space

Try it Yourself - Examples

Remove several attributes from the selected elements
How to remove the id and class attribute from the selected elements.


❮ jQuery HTML/CSS Methods