I have two elements that I would like to select
<input id="iMe" /> and <span id="sMe">Blah</span>
I would like to select them both:
$("span[id$='Me']") and $("input[id$='Me']")
in one selector. I've tried:
$("span,input[id$='Me']") -> Nope
$("span[id$='Me'],input[id$='Me']") -> Nope
$("span[id$='Me']input[id$='Me']") -> Nope
I wouldn't mind just adding it to the collection either. I definitely don't want to create more script to hack around this. Any ideas?