Hi,
I am having a flash object integrated in my html page. It requires a version of 10 to run it. If the client is not having the flash player of 10 or above, the flash will not come and it will look a bit odd. In that case, I want to show an alternate image. What is the best way to do it?
In fact I have the javascript code for it. But I dont know how to utilize it to get what I need.
var version = deconcept.SWFObjectUtil.getPlayerVersion();
if (document.getElementById && (version["major"] < 10)) {
//Code here
}
Thanks