This might sound like a question already asked before but actually isn't. I know how to access elements using JQuery but in this situation, the parent element has a colon in its name which is making it difficult. The structure is as follows:
<fb:comments class='fb_iframe_widget'>
<span>something</span>
</fb:comments>
Note that the span I need to access doesn't have an ID or class and when I use the regular JQuery construct it throws an error due to the colon:
var fbspan = $('fb:comments span');
If colons are not allowed in tag names, how does Facebook do it in the first place? But more importantly, how do I access that span inside <fb:comments>?