I'm using youtubin to embed youtube videos on a secure page. It works whenever I specify a jQuery selector:
<script>
$(function() {
开发者_JAVA技巧 $('#foo a').youtubin();
});
</script>
<div id="foo">
<a href="http://www.youtube.com/v/kUini08olkQ&hl=en_US&fs=1">YouTube Video</a>
</div>
It doesn't work when I just call youtubin:
<script>
$(function() {
$.youtubin();
});
</script>
<div id="foo">
<a href="http://www.youtube.com/v/kUini08olkQ&hl=en_US&fs=1">YouTube Video</a>
</div>
I'm using jQuery 1.3.2, swfobject 2.2, and youtubin 1.2. Any thoughts on why it only works with a selector? Thanks
Try changing the format of the URL of the Youtube video. Example:
<a href="http://www.youtube.com/watch?v=_c6HsiixFS8">Click here</a>
精彩评论