Code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="Content-Style-Type" content="text/css"> <meta http-equiv="Content-Script-Type" content="text/javascript"> <title></title> ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="Content-Style-Type" content="text/css"> <meta http-equiv="Content-Script-Type" content="text/javascript"> <title></title>
Updated 06-17-2010 at 09:45 PM by molendijk
A plugin that allows us to (i) create a customized playlist for chromeless YouTube-videos (using the JW player), (ii) place info about each video at the top of it and (iii) chop the video's - which makes it possible to create new YouTube-video's out of existing ones. Demo and explanations here. === Arie Molendijk.
Updated 05-09-2010 at 10:52 AM by molendijk (Added blog category)
Some Remarks about Ajax-includes using document.write I. Why document.write? Including external content with the help of document.write brings in external html AND external code (js, css). This is a clear advantage of document.write over other inclusion-methods, like innerHTML (does not execute scripts) and appendChild (does not automatically import all the external js and/or css when IE, Chrome or Opera are used). To see this, create a file external.html with some js in it, ...
Updated 02-27-2010 at 07:32 PM by molendijk
Inserting these two lines to your include code for video's: <param name="allowScriptAccess" value="never"> <param name="allowNetworking" value="internal"> prevents flash apps from running scripts or having outbound links. This is a very handy method for preventing users to open the video on the video-providing site (in a new window) when they accidentally click on the video screen. ...
Updated 11-19-2009 at 12:50 PM by molendijk
Perhaps many of you already knew this. I didn't. HTML 4.01 Strict Video Include: Code: <!--[if IE]> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" style="position:absolute;left:20%; top:20%; height:80%;width:80%"> <![endif]--> <!--[if !IE]><!--> <object type="application/x-shockwave-flash" style="position:absolute;left:20%; top:20%; height:80%;width:80%" data="http://swf.tubechop.com/tubechop.swf?vurl=rw1j0NsIIeE&start=164&end=199&cid=28051" ...
<!--[if IE]> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" style="position:absolute;left:20%; top:20%; height:80%;width:80%"> <![endif]--> <!--[if !IE]><!--> <object type="application/x-shockwave-flash" style="position:absolute;left:20%; top:20%; height:80%;width:80%" data="http://swf.tubechop.com/tubechop.swf?vurl=rw1j0NsIIeE&start=164&end=199&cid=28051"
Updated 10-02-2009 at 01:29 PM by molendijk (Observation made by jscheuer about title)