Hi all:
Has anyone tried matching an id with an equal sign (=) in it, and WORKED? E.g.:
// DOM structure
/*DOC += <span id='Test=Test' class='something'></span> */
var test = $('#Test=Test');
I tried the above code. jQuery doesn't like it and returned undefined. However if I match the span's class, I could actually find the span (and subsequently query the value of id).
If I have to match the id with '=' in it, are there any ways to do it?
Thanks.