Section 4.4: Removing attribute To remove an attribute from an element you can use the function .removeAttr(attributeName) . Example: $('#home').removeAttr('title'); This will remove title attribute from the element with ID home .