I have a div with an ID which contains a percentage symbol, like this:
<div id="foo%bar">
stuff
</div>
And I cant avoid that, is a div that I cant change so I need to deal with that :(
I am trying to reach that element using LESS but I get an error in the line that contains the percentage when I try to compile the LESS file:
To compile the LESS file I'm using recess (https://github.com/sindresorhus/grunt-recess), a GruntJS plugin. If someone know any other tool to compile LESS files avoiding this error I will be happy to change to use it.
Thanks in advance!