Will there be any issue with CSS or jQuery if a YT video ID is used as the tag ID?
As in this example:
http://www.youtube.com/watch?v=_0qkIdfa3qY
<div id="_0qkIdfa3qY"></div>
$('#_0qkIdfa3qY').html();
But consider that the ID can be anything with the the following characters:
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_-
I'm not seeing anything in the documentation regarding the use of upper/lower cases, numbers or the characters -
and _
. I wonder specially about numbers or scores in the beginning of the ID.