Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Feedback: irt.org FAQ Knowledge Base Q1284

Feedback on: irt.org FAQ Knowledge Base Q1284

Sent by Norbert Hartkamp -- Germany on April 05, 2000 at 11:16:06: - feedback #1043

Worth:
Very worth reading

Comments:
There is a typo in the script, I believe: toLowercase() instead of toLowerCase() (with the lower "c" the script didn't function)

Another error might be, that the mimeType should be tested for
indexOf('shockwave') not indexOf('quicktime'), am I right?

Here is the compelte script:

<html>
<head>
<title>test</title>

</head>
<body bgcolor="#ffffff">
<img name="testMime" src="test.swf">

<script language="JavaScript">

</script>


</body>
</html>



Sent by michel on May 16, 2000 at 03:42:15: - feedback #1233

Comments:
if (document.all && document.testMime.mimeType.toLowercase().indexOf('quicktime') !=-1)

should be

if (document.all && document.testMime.mimeType.toLowercase().indexOf(mimetype) !=-1)



Sent by Andrew L. McHargue on July 26, 2000 at 14:32:10: - feedback #1536

Worth:
Very worth reading

Comments:
But typo: quicktime s/b flash


©2018 Martin Webb