Difference between #.. and *[id=..] as jQuery Selector

'*[id=a]' selects multiple elements with the same id: a.
'#a' only selects the first one with id=a.

No comments: