473,396 Members | 1,827 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Hiding URL on Status Bar

I would like to prevent the URL from appearing on the status bar when a user
holds the mouse down on top of it. I am already using:

oncontextmenu="window.status=''; return false"

....and similar for onclick, onmousedown, onmouseover, onmousemove,
oncontextmenu

on the BODY and it almost gets me to where I need to be. Whenever I click
on a link on this page (for the first time only), the URL appears in the
status bar. Subsequent clicks on that link do not show the URL in the status
bar. This happens with each link on the page - bad behavior the first time
followed by what i need to see.

I've also tried those events on the links themselves - same behavior.

Ideas? Suggestions?
--
Rob Hutchison
Aug 18 '06 #1
4 2478
Use some javascript

http://www.javascriptkit.com/script/...destatus.shtml

Regards

John Timney (MVP)
"RCHutch" <RC*****@discussions.microsoft.comwrote in message
news:1F**********************************@microsof t.com...
>I would like to prevent the URL from appearing on the status bar when a
user
holds the mouse down on top of it. I am already using:

oncontextmenu="window.status=''; return false"

...and similar for onclick, onmousedown, onmouseover, onmousemove,
oncontextmenu

on the BODY and it almost gets me to where I need to be. Whenever I click
on a link on this page (for the first time only), the URL appears in the
status bar. Subsequent clicks on that link do not show the URL in the
status
bar. This happens with each link on the page - bad behavior the first
time
followed by what i need to see.

I've also tried those events on the links themselves - same behavior.

Ideas? Suggestions?
--
Rob Hutchison

Aug 19 '06 #2
Thanks, but your link describes what does "almost works". As I said, it
works well except when each link is clicked for the first time on the page.
The URL only shows when the mouse button is down when over the hyperlink.
--
Rob Hutchison
"John Timney (MVP)" wrote:
Use some javascript

http://www.javascriptkit.com/script/...destatus.shtml

Regards

John Timney (MVP)
"RCHutch" <RC*****@discussions.microsoft.comwrote in message
news:1F**********************************@microsof t.com...
I would like to prevent the URL from appearing on the status bar when a
user
holds the mouse down on top of it. I am already using:

oncontextmenu="window.status=''; return false"

...and similar for onclick, onmousedown, onmouseover, onmousemove,
oncontextmenu

on the BODY and it almost gets me to where I need to be. Whenever I click
on a link on this page (for the first time only), the URL appears in the
status bar. Subsequent clicks on that link do not show the URL in the
status
bar. This happens with each link on the page - bad behavior the first
time
followed by what i need to see.

I've also tried those events on the links themselves - same behavior.

Ideas? Suggestions?
--
Rob Hutchison


Aug 19 '06 #3
If you click on the link in the example you refer to, it does not work
properly either.
--
Rob Hutchison
"John Timney (MVP)" wrote:
Use some javascript

http://www.javascriptkit.com/script/...destatus.shtml

Regards

John Timney (MVP)
"RCHutch" <RC*****@discussions.microsoft.comwrote in message
news:1F**********************************@microsof t.com...
I would like to prevent the URL from appearing on the status bar when a
user
holds the mouse down on top of it. I am already using:

oncontextmenu="window.status=''; return false"

...and similar for onclick, onmousedown, onmouseover, onmousemove,
oncontextmenu

on the BODY and it almost gets me to where I need to be. Whenever I click
on a link on this page (for the first time only), the URL appears in the
status bar. Subsequent clicks on that link do not show the URL in the
status
bar. This happens with each link on the page - bad behavior the first
time
followed by what i need to see.

I've also tried those events on the links themselves - same behavior.

Ideas? Suggestions?
--
Rob Hutchison


Aug 19 '06 #4
ah yes - should have read your post properly.

Fairly sure you will not find a solution to this, as the mousedown event
doesn't seem to be trappable until you release the mouse, and by then the
link is exposed and the click event takes over. I think you'll have to live
with it.

Regards

John Timney (MVP)
"RCHutch" <RC*****@discussions.microsoft.comwrote in message
news:4A**********************************@microsof t.com...
If you click on the link in the example you refer to, it does not work
properly either.
--
Rob Hutchison
"John Timney (MVP)" wrote:
>Use some javascript

http://www.javascriptkit.com/script/...destatus.shtml

Regards

John Timney (MVP)
"RCHutch" <RC*****@discussions.microsoft.comwrote in message
news:1F**********************************@microso ft.com...
>I would like to prevent the URL from appearing on the status bar when a
user
holds the mouse down on top of it. I am already using:

oncontextmenu="window.status=''; return false"

...and similar for onclick, onmousedown, onmouseover, onmousemove,
oncontextmenu

on the BODY and it almost gets me to where I need to be. Whenever I
click
on a link on this page (for the first time only), the URL appears in
the
status bar. Subsequent clicks on that link do not show the URL in the
status
bar. This happens with each link on the page - bad behavior the first
time
followed by what i need to see.

I've also tried those events on the links themselves - same behavior.

Ideas? Suggestions?
--
Rob Hutchison



Aug 19 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
by: Bob Weiner | last post by:
What is the purpose of hiding intead of overriding a method? I have googled the question but haven't found anything that makes any sense of it. In the code below, the only difference is that...
2
by: Xerxes | last post by:
Hi, I am trying to hide/change the window.status text when the mouse is over the hyperlink text but it does not seem to work on Mozilla (Firefox). Am I doing something wrong: <a...
4
by: Jon | last post by:
Hi, I am calling the function showpopupWindow(item) to open and write a popup window. When testing in IE6 locally the popup window displays my text in both the title and status bars but when...
2
by: Andrew Poulos | last post by:
I have a form with a submit button and an onsubmit event. fCheckform = function() { var status = false; // // some checking here, if its ok then status get set to true // if (status) { var...
11
by: JJ297 | last post by:
I want to hide the Pin field below in my repeater. How do I do this? <asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1"> <ItemTemplate> <tr> <td><font...
162
by: Sh4wn | last post by:
Hi, first, python is one of my fav languages, and i'll definitely keep developing with it. But, there's 1 one thing what I -really- miss: data hiding. I know member vars are private when you...
27
by: matt | last post by:
Hello group, I'm trying to become familiar with the information hiding design rules, and I have a lot (3) of questions for all you experts. AFAIK, a generic module has 2 files: ...
0
by: bharathreddy | last post by:
Hi All, I am using a listview control in my usercontrol so that it can be used in more than one form. This user control has one column extraw, so i want to make it invisible depending on the...
6
by: Archana | last post by:
Hi all, i am facing one problem with status bar of IE. when i execute any javascript function or navigate to any link it is showing me that in status bar which i don't want. how will ido...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.