Click to See Complete Forum and Search --> : Check for vers of QuickTime Plug-in
NormB
01-31-2003, 01:09 PM
This might be simple, but it escapes me.
Is there a way to tell if a browser has the quicktime plug-in installed and to find out what version of quicktime it is?
Thanks in advanced.
numba_one
01-31-2003, 02:26 PM
Heres a code for you.....it checks for shockwave too.....
<!-- ONE STEP TO INSTALL CHECK PLUGINS:
1. Add the specified coding into the BODY of your HTML document -->
<!-- STEP ONE: Put this code into the BODY of your HTML document -->
<BODY>
<CENTER>
<SCRIPT LANGUAGE="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
var myPlugin = navigator.plugins["Shockwave"];
if (myPlugin)
document.writeln("You have Shockwave installed!")
else
document.writeln("You don't have Shockwave installed!")
// End -->
</SCRIPT>
<br>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var myPlugin = navigator.plugins["Quicktime"];
if (myPlugin)
document.writeln("You have Quicktime installed!")
else
document.writeln("You don't have Quicktime installed!")
// End -->
</SCRIPT>
</CENTER>
edinc90
03-03-2007, 10:04 PM
But is there a way to check for a specific version of QuickTime? My site has some videos that people using old versions of QuickTime (like QT 6) have problems playing. I would like to redirect them to the QuickTime download page or bring up a message box if the version of QT they have is older than QT 7.