Skip to content

Commit 17cdeda

Browse files
committed
prop: change wording about removeProp
Ref jquerygh-1189
1 parent 912b852 commit 17cdeda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entries/prop.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ $( "input" ).prop( "disabled", false );
144144
$( "input" ).prop( "checked", true );
145145
$( "input" ).val( "someValue" );
146146
</code></pre>
147-
<p><strong>Important:</strong> the <code><a href="/removeProp/">.removeProp()</a></code> method should not be used to set these properties to false. Once a native property is removed, it cannot be added again. See <code><a href="/removeProp/">.removeProp()</a></code> for more information.</p>
147+
<p><strong>Important:</strong> the <code><a href="/removeProp/">.removeProp()</a></code> method should not be used to remove native properties. This will lead to unexpected behavior. See <code><a href="/removeProp/">.removeProp()</a></code> for more information.</p>
148148
<h4 id="computed-prop-values">Computed property values</h4>
149149
<p>By using a function to set properties, you can compute the value based on other properties of the element. For example, to toggle all checkboxes based off their individual values:</p>
150150
<pre><code>

0 commit comments

Comments
 (0)