This is my HTML code
<input id="email" name="email" type="text" autocomplete="off" />
<span id="emailInfo"></span>
This jQuery script which validates the input and prints a message within the span tags
emailInfo.text("This email is already registered!");
This works prefect but when I try to print an HTML entity, it won't be recognized.
emailInfo.text("✓");
✓ = ✓
However, It would be recognized if I manually typed it anywhere in the HTML page.
Why is this happening ?