I have the following html:
HTML
<span id="plus one">Plus One</span>
jQuery
$("#plus one").hide();
The jQuery to hide the span doesn't work and I suspect it is because there is a space in the id name.
I cannot change the id name or use a class orname as an alternative. Is there anyone other way to deal with this? All feedback welcomed - thanks.