Joined: Wed Oct 12, 2011 7:38 pm Posts: 97 Location: DFW, Texas
|
|
Disabling the url's works great with html but the following still shows in the staus bar when using javascript.
<a href="javascript:parent.mainwind.location.replace('mainmenu.htm')">Click Here to Continue</a>
After some research, I tried the following. It does works but has to be inserted to the <head> section of every page, as needed. If possible, it would be nice if it was included in the same selection as when unchecking the "AutoShowUrLs" to cover the entire project.
<SCRIPT LANGUAGE="JavaScript"> function hidestatus(){ window.status='' return true } if (document.layers) document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT) document.onmouseover=hidestatus document.onmouseout=hidestatus </SCRIPT>
Thanks, HawkeyeTX
|
|