|
| Register now to interact with over 11,000 members! Registered users have Posting Privileges, free access to Private Messaging, Email Notifications and more. |
|
|||||||
![]() |
|
|
Thread Tools |
|
|
#1 |
|
Shiznizal
Join Date: Oct 2003
Location: Portland, OR
Posts: 672
Reputation: 33
|
hide path, html or java script?
i'm trying to hide the path that shows up in the lower left corner if IE when you hover over a link. I've been scanning the web for something that can help me, but have not found anything. i know (some time ago) i found a scrip that would display a custom text there, that would work too, i have my domain masked and i do not want people to know the structure of my site as they could get around certain restrictions i have in place.
thanks |
|
|
|
|
#2 |
|
Moderator
Join Date: Apr 2002
Location: Malta - Europe
Posts: 7,108
Reputation: 125
|
Check this:
<a href="http://link.html" onMouseOver="window.status='Link Description'; return true;" onMouseOut="window.status=''; return true;">Text Link</a> Change the link parts.
__________________
Neville
You never have a second chance to make a first good impression!
|
|
|
|
|
#3 |
|
Shiznizal
Join Date: Oct 2003
Location: Portland, OR
Posts: 672
Reputation: 33
|
ahhh, nice.
that is great for future use, but i have way too many links to go thru and change, i was looking for something to just apply to each page. there may not be that kind of solution though and i will just have to start one link at a time. thanks |
|
|
|
|
#4 |
|
Join Date: Feb 2002
Location: n/a
Posts: 7,294
Reputation: 224
|
|
|
|
|
|
#5 |
|
A little light reading---
Join Date: Mar 2003
Location: CA
Posts: 169
Reputation: 39
|
Scrolling Text in that box???
This is a java script that I have used that should do the trick.just change the responds and install it as it says. Got this at http://javascript.internet.com/ under scrolls.
<!-- TWO STEPS TO INSTALL CLASSIC SCROLL: 1. Paste the coding into the HEAD of your HTML document 2. Copy the onLoad event handler into the BODY tag --> <!-- STEP ONE: Copy this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://javascript.internet.com --> <!-- Begin function scrollit(seed) { var m1 = "Welcome to The JavaScript Source! "; var m2 = "..... You can find all the scripts you need here! "; var m3 = "......Enjoy "; var m4 = ""; var msg=m1+m2+m3+m4; var out = " "; var c = 1; if (seed > 100) { seed--; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout(cmd,100); } else if (seed <= 100 && seed > 0) { for (c=0 ; c < seed ; c++) { out+=" "; } out+=msg; seed--; window.status=out; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout(cmd,100); } else if (seed <= 0) { if (-seed < msg.length) { out+=msg.substring(-seed,msg.length); seed--; window.status=out; cmd="scrollit("+seed+")"; timerTwo=window.setTimeout(cmd,100); } else { window.status=" "; timerTwo=window.setTimeout("scrollit(100)",75); } } } // End --> </SCRIPT> <!-- STEP TWO: Add this onLoad event handler into the BODY tag --> <BODY onLoad="scrollit(100)"> <p><center> <font face="arial, helvetica" size="-2">Free JavaScripts provided<br> by <a href="http://javascriptsource.com">The JavaScript Source</a></font> </center><p> <!-- Script Size: 1.35 KB -->
__________________
G.Lee |
|
|
|
|
#6 |
|
Shiznizal
Join Date: Oct 2003
Location: Portland, OR
Posts: 672
Reputation: 33
|
thanks to both of you
the one at http://javascriptkit.com/script/scr...destatus2.shtml seems to be just what i was looking for though. disables the link path with a few simple lines of code. thanks agin |
|
|
![]() |
| Thread Tools | |
|
|