The Wayback Machine - https://web.archive.org/web/20230512160219/https://www.geeksforgeeks.org/jquery-removeprop-with-examples/
Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

jQuery | removeProp() with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The removeProp() method is an inbuilt method in jQuery which is used to remove the property set by the prop() method. The prop() method is used to add property to a selected element.

Syntax:

$(selector).removeProp(property)

Parameter: This method accepts single parameter property which is mandatory. It is used to specify the name of the property which needs to remove.

Return Value: This method returns the selected element with the specified property removed.

Below example illustrates the removeProp() method in jQuery:

Example:




<!DOCTYPE html>
<html>
    <head>
        <title>The removeProp Method</title>
        <script src=
        </script>
          
        <!-- jQuery code to show the working of this method -->
        <script>
            $(document).ready(function() {
                $("button").click(function() {
                    var $GFG = $("div");
                    $GFG.prop("color", "green");
                    $GFG.append("The value of color: "
                                     + $GFG.prop("color"));
                    $GFG.removeProp("color");
                    $GFG.append("<br>The value of color after removeProp: " 
                                            + $GFG.prop("color") + "<br>");
                });
            });
        </script>
        <style>
            div {
                width: 400px;
                min-height: 60px;
                padding: 15px;
                border: 2px solid green;
                margin-bottom: 10px;
            }
        </style>
    </head>
    <body>
       
        <div></div>
        <!-- click on this button -->
        <button>Click Here!</button>
        <br>
        <br>
    </body>
</html>

Output:
removeprop method


My Personal Notes arrow_drop_up
Last Updated : 13 Feb, 2019
Like Article
Save Article
Similar Reads