Hi all, I was using JSLint to validate my code and i received the following error:
"expecting <\/ instead of <\"
I got that for my HTML code and JavaScript code. For example:
element.innerHTML += "<p>here's what happened: You are <b>" + aVariable + " </b> years old.</p>";
and:
<input type="text" name="enterText" id="nameOfPerson" onblur="submitValues(this)" size="50" value="Enter your name"/>
Can anyone tell me why this is happening?