1

I am using javascript code shown below for displaying Browser plugins for Flash Version.

Code is:

<script>
txt=navigator.Flash;
document.getElementById("flash").innerHTML = navigator.Flash;
</script>

But this code output is displaying

undefined

I want the version number of flash player to be displayed.

I have no idea how to go ahead. Please help. Thanks in advance.

user2201935
  • 396
  • 1
  • 7
  • 19
  • Possible duplicate http://stackoverflow.com/questions/3652480/how-to-check-flash-player-version-using-javascript – Stasel Mar 24 '13 at 15:04

2 Answers2

2

Use swfobject. With it you can get the flash player version of the user viewing it see http://code.google.com/p/swfobject/

Vortex
  • 663
  • 6
  • 7
0

Check out here

Source: Checking Flash player version using Javascript

Community
  • 1
  • 1
Stasel
  • 1,298
  • 1
  • 13
  • 26