Hello Friends,
I've set the following page for example and it is working perfect on IE but
at displaying it with FireFox it won't work
Here is direct example link for the page
http://zwark.info/test/x.html
OR you can check the code here
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<title>TEST</title>
<HEAD>
<style>
img
{
filter:gray()
}
</style>
<script type="text/javascript">
function color(elmnt)
{
elmnt.style.filter=false
}
function gray(elmnt)
{
elmnt.style.filter="gray()"
}
</script>
</HEAD>
<BODY>
<p align="center"><img alt="" src="1.gif" onmouseover="color(this)" onmouseout="gray(this)"/></p>
</BODY>
</HTML>
Is there any chance that it works fine with firefox
thanks in advance
Bookmarks