I\'m working on a pre-written module for a site, and I need to target an element with the id test:two. Now, this element has a colon in it, so jQuery is presuma
test:two
Use the attribute equals selector.
$('[id="test:two"]')