Hey there,
I have some youtube videos embedded in my website and I'm using external links module. There is the external link icon beside each vedeo, but the videos are not included in a <a> envidonment. They are embedded the following way:
<object height="344" width="425"><param name="movie" value="http://www.youtube.com/v/CNSDYU3CS5k&hl=de&fs=1&"><param name="allowFullScreen" value="true"><param name="allowscriptaccess" value="always"><embed type="application/x-shockwave-flash" src="http://www.youtube.com/v/CNSDYU3CS5k&hl=de&fs=1&rel=0" allowscriptaccess="always" allowfullscreen="true" height="344" width="425"></object>
How can I remove these icons? What is necessary to avoid them completely in the future?
The site can be found here:
http://des-kehrt-so.de/?q=node/18
Thanks,
forschi
Comments
Comment #1
Anonymous (not verified) commentedSeems to be an error in the java script (extlink.js, line 40):
$("a", context).each(function(el)If I get this right (I have no clue of JS), this goes through all
<a>-tags, but it seems to include non-<a>-tags, too.Please have a look at this, as I haven't found anything about how to use such java script.
It's possible to exclude youtube, but I only want to exclute it for embedded videos, not for links.
Thanks,
forschi
Comment #2
quicksketchUse the regex exclude list to exclude any particular links. Closing after lack of updates.