I have a unique situation where a dynamically driven link contains a type of ID I'm not able to target and hide with jquery. I'm calling it a pseudo ID, since it reminds me of pseudo classes, but I don't even think this type of ID exists.
Do you have a solution how I can target this link and hide it with this ID? I'm not able to physically change the ID, so I'm stuck hoping there was a way to get at it with jquery.
Here is the HTML with the ID in question:
<a href="http://www.helloworld.com" id="msgForum:print">test</a>
I tried removing it with an easy hide function, but I'm not able to target it, because of the :print
that is present.
$('#msgForum:print').hide();
Here is my fiddle: http://jsfiddle.net/YAMVA/1/