I have some nodes which may occasionally contain a dot in their ID attribute,
Example: <div id="site_someSite.com"></div>
Then I need to select this element ( I'm using jQuery ) and I do this:
variable = $('#site_'+user);
user being 'someSite.com'
And I get nothing in the variable. I suppose this is due to the dot in the name which jQuery is accepting as a class. Anyone has any idea how I can work around this without not-using a dot?