[jQuery] selecting elements containing colons
I know that jQuery made the decision not to allow selection of
elements with colons in them, however it is valid XML. Here is an
example piece of code I am getting back from an ajax call:
<item>
<news:special>Free chicken!</news:special>
</item>
Any ideas how I can select the news:special item?
~Sean