Closed
Description
Line 89 has a parenthesis too early.
Here are lines 86 through 89:
$( "p" ).html(
".attr( \"checked\" ): <b>" + $input.attr( "checked" ) + "</b><br>" +
".prop( \"checked\" ): <b>" + $input.prop( "checked" ) + "</b><br>" +
".is( \":checked\" ): <b>" + $input.is( ":checked" ) ) + "</b>";
Line 89 should be
".is( \":checked\" ): <b>" + $input.is( ":checked" ) + "</b>");
so that the + "</b>"
is in the .html() command.
Metadata
Metadata
Assignees
Labels
No labels