Edited Pull Request #2018

Escaped the double quotation marks on line 418.
pull/2018/head
Matt Trifilo 2015-08-19 22:48:25 -05:00
parent 666a0a2cf3
commit 45bcd32c9c
1 changed files with 1 additions and 1 deletions

View File

@ -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": [