PowWeb Forums - The Perfect Community for the Perfect Host  

Register now to interact with over 11,000 members! Registered users have Posting Privileges, free access to Private Messaging, Email Notifications and more.

Go Back   PowWeb Community Forums > Web Site Design > HTML/CSS/Javascript
User Name
Password
Register FAQ Members List Search Today's Posts Mark Forums Read

Closed Thread
 
Thread Tools
Old 2-12-04, 03:53 AM   #1
oatesj77
Shiznizal
 
oatesj77's Avatar
 
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
oatesj77 is offline  
Old 2-12-04, 04:20 AM   #2
NMS
Moderator
 
NMS's Avatar
 
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.
NMS is offline  
Old 2-12-04, 04:29 AM   #3
oatesj77
Shiznizal
 
oatesj77's Avatar
 
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
oatesj77 is offline  
Old 2-12-04, 06:28 AM   #4
(jj)
 
(jj)'s Avatar
 
Join Date: Feb 2002
Location: n/a
Posts: 7,294
Reputation: 224
Is this what you are looking for

http://javascriptkit.com/script/scri...estatus2.shtml
__________________
If silence is golden, then I must be worth million$

(jj)
Jack
(jj)'s Playground
(jj) is offline  
Old 2-12-04, 12:41 PM   #5
Guy
A little light reading---
 
Guy's Avatar
 
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
Guy is offline  
Old 2-12-04, 03:55 PM   #6
oatesj77
Shiznizal
 
oatesj77's Avatar
 
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
oatesj77 is offline  
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 01:00 AM.


Contents ©PowWeb, Inc. ~ vBulletin, Copyright © 2000-2007 Jelsoft Enterprises Limited.