I am trying to make my page accessable fro my bosses phone/PDA which i know he would like to have. I have tried using javascript to do this however his pda/phone doesnt seem to be able to run javascripts. I have a sized down version that would be quick for DL so that is out of the way the only thing left to to be able to send him there.
here is some of my javascript just in case that is a problem. I have searched the pages in Tek-tips and not found the post that relates to this.
Thanks
IBACFII
here is some of my javascript just in case that is a problem. I have searched the pages in Tek-tips and not found the post that relates to this.
Code:
<SCRIPT LANGUAGE ="JavaScript">
<!--
var browser_name = navigator.appName;
var strNav = navigator.userAgent;
var isCE = strNav.indexOf("Windows CE");
var isPPC = strNav.indexOf("240x320");
if ((screen.availWidth<251) || (screen.availHeight<251) || (isPPC > -1))
{
window.location = "Palm_index.html";
}
}
-->
</script>
Thanks
IBACFII