Hi everybody,
I am using a java script function which redirect to the page according to the given parameter, and it is working as desired in IE, but I found that it not work with Firefox browsers, so some one plz guide me how it is possible to have the same function which could work on IE and Mozilla firfox.
The function code:
<?php
function reDirect($page)
{
$s = "<script language = 'javascript'>
window.navigate('$page');
</script>";
return $s;
}
Thanks