At jfoobar labs you will find "stuff" that is either cool, useful or for learning purposes. We hope to create a pretty nice selection over time. Remember, we need it to be fun.
If you want to put movies in your articles on a site with a strict doctype you will run into problems with the embed tag that is used by the default code YouTube gives you for example. Embed is actually not XHTML strict valid and this is because embed has been deprecated from XHTML 1.0.
<object width="425" height="344">
<param name="movie" value="http://www.youtube.com/v/M15hurmvnhI&hl=en&fs=1"></param>
<param name="wmode" value="transparent"></param>
<embed src="http://www.youtube.com/v/M15hurmvnhI&hl=en&fs=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350">
</embed>
</object>
You can solve that by making a little change to the code:
<object width="425" height="344" data="http://www.youtube.com/v/M15hurmvnhI&hl=en&fs=1">
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie" value="http://www.youtube.com/v/M15hurmvnhI&hl=en&fs=1" />
</object>
Copyright © 2008 jfoobar - All Rights Reserved - Joomla! is a registered trademark of Open Source Matters, Inc - Disclaimer
Re: IE Only
# 1 - Posted by: ryanfaescotland on 2009-09-26 11:07:57
Pretty sure this means your videos won't appear in any browser except IE although I'm still looking into it.