jQuery removeProp() Method

You are Here:

jQuery removeProp() Method

The jQuery removeProp() method removes a property for the set of matched elements.

Example

HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery removeProp() Method</h1> <p>My Name is <span></span>.</p> <script> $(document).ready(function(){ $("span").prop("name", "Jade"); $("span").removeProp("name"); $("span").text($("span").prop("name")); }); </script> </body> </html>

Syntax

$(selector).removeProp(property);

Parameter Values

ValueTypeExplanation
propertyRequiredSpecifies the name of the property to remove

Reminder

Hi Developers, we almost covered 99.5% of jQuery Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in jQuery.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author