I have a disclaimer page prior to a visitor going to my FAQ page. I want to
hide the link which normally appears in the status bar from visitors seeing
it.
I am using the following code which works fine except that the "I Agree"
link still shows the link path. What's wrong - driving me nuts!!??
<script language="JavaS cript">
<!-- Hide the script from old browsers --
function a(txt) {
self.status = txt
}
function b() {
self.status = ""
}
// --End Hiding Here -->
</script>
<A HREF="index.htm l" onMouseOver="a( 'Return to Home Page');return true"
onMouseOut="win dow.status=''; ">I Disagree</a>
<p>
<A HREF="freqquest .html" onMouseOver="a( 'Go to FAQ's Page');return true"
onMouseOut="win dow.status=''; ">I Agree</a>
--
Ian Shere
Tarzan Design Ltd
Award Winning Architecture
hide the link which normally appears in the status bar from visitors seeing
it.
I am using the following code which works fine except that the "I Agree"
link still shows the link path. What's wrong - driving me nuts!!??
<script language="JavaS cript">
<!-- Hide the script from old browsers --
function a(txt) {
self.status = txt
}
function b() {
self.status = ""
}
// --End Hiding Here -->
</script>
<A HREF="index.htm l" onMouseOver="a( 'Return to Home Page');return true"
onMouseOut="win dow.status=''; ">I Disagree</a>
<p>
<A HREF="freqquest .html" onMouseOver="a( 'Go to FAQ's Page');return true"
onMouseOut="win dow.status=''; ">I Agree</a>
--
Ian Shere
Tarzan Design Ltd
Award Winning Architecture
Comment