There is no such thing as multiple identifiers.
https://developer.mozilla.org/en/XUL/Attribute/id
According to the standard, any string data in the id property is treated as part of the value.
ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".") .
link: http://www.w3.org/TR/REC-html40/types.html#type-name
There's a different way though! You can have all kinds of class names, and you can use jQuery to grab an element by class name.
HTML
<div class="hideMe Select1"> <p>Some Content</p> </div> <div class="hideMe Select2 Select3 Select4 Select5"> <p>Some Content</p> </div>
Javascript
$('.Select2')[0]
Part [0] is that when you get elements by class name, there can be several. The jQuery selector returns an array, so you just grab the first one.
source share