mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-16 21:06:35 +08:00
Fixed: issue #2014
I changed "#button" to "button" in the example to target all buttons, and I changed the single quotes to double quotes in the description for consistency.
This commit is contained in:
parent
46c2ad4057
commit
5d3582aa0a
@ -415,7 +415,7 @@
|
||||
"You can also change the non-CSS properties of HTML elements with jQuery. For example, you can disable buttons.",
|
||||
"When you disable a button, it will become grayed-out and can no longer be clicked.",
|
||||
"jQuery has a function called <code>.prop()</code> that allows you to adjust the properties of elements.",
|
||||
"Here's how you would disable all buttons: <code>$('#button').prop('disabled', true);</code>",
|
||||
"Here's how you would disable all buttons: <code>$("button").prop("disabled", true);</code>",
|
||||
"Disable only the <code>target1</code> button."
|
||||
],
|
||||
"tests": [
|
||||
|
||||
Loading…
Reference in New Issue
Block a user