Wednesday, June 17, 2026
HomeLanguagesJavascriptjQuery prop() Method

jQuery prop() Method

The prop() is an inbuilt method in jQuery that is used to set or return properties and values for the selected elements. When this method is used to return the property value, it returns the value of the FIRST matched element and when this method is used to set property values, it sets one or more properties for the selected elements.

Syntax :

$(selector).prop(para1, para2)

Parameters: It accepts two parameters which are specified below-

  • para1: It specifies the property.
  • para2: It specifies the value of the property in case of set.
  • Return Value:It returns the property and value set for the property for the selected element.
    jQuery code to show the working of prop() method:
  • html




    <!DOCTYPE html>
    <html>
     
    <head>
        <script src=
        </script>
        <!-- jQuery code to show the working of this method -->
        <script>
            $(document).ready(function () {
                $("button").click(function () {
                    var $x = $("p");
                    $x.prop("color", "green");
                    $x.append(" Property is color and its value: "
                        + $x.prop("color"));
     
                });
            });
        </script>
        <style>
            div {
                width: 250px;
                padding: 10px;
                height: 100px;
                border: 2px solid green;
            }
        </style>
    </head>
     
    <body>
        <div>
            <p></p>
            <br><br>
            <!-- click on button this method -->
            <button>Click Here!</button>
        </div>
    </body>
     
    </html>

    
    

    Output:

    jQuery-99

    Dominic
    Dominichttp://wardslaus.com
    infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
    RELATED ARTICLES

    1 COMMENT

    Most Popular

    Dominic
    32516 POSTS0 COMMENTS
    Milvus
    131 POSTS0 COMMENTS
    Nango Kala
    6898 POSTS0 COMMENTS
    Nicole Veronica
    12014 POSTS0 COMMENTS
    Nokonwaba Nkukhwana
    12109 POSTS0 COMMENTS
    Shaida Kate Naidoo
    7019 POSTS0 COMMENTS
    Ted Musemwa
    7262 POSTS0 COMMENTS
    Thapelo Manthata
    6976 POSTS0 COMMENTS
    Umr Jansen
    6964 POSTS0 COMMENTS