Results 1 to 9 of 9

Thread: path showing in taskbar

  1. #1
    Join Date
    Jul 2006
    Posts
    27
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default path showing in taskbar

    what is the html code to disable the path or site address showing in the taskbar of internet explorer. pls help


  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Can't be done using HTML. I'm not sure if it can be done at all. The taskbar is outside the control of the page designer.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    that is a picture of the status bar... is that what you are refering to?

  4. #4
    Join Date
    Sep 2005
    Posts
    882
    Thanks
    0
    Thanked 3 Times in 3 Posts

    Default

    Do you mean when someone hovers over a link?

  5. #5
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Yeah, looks like the status bar. Still can't be done using just HTML. In javascript, there are several options, none of which will work in a non-javascript enabled browser and some of which would render the site inaccessible to a non-javascript enabled browser. Generally, it isn't a good idea to mess with the status bar. Most people do not make it a central part of their internet experience so, whatever is down there cannot possibly detract from your site much.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  6. #6
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    what you are showing in your code is when a person hovers (holds mouse over some link) it will show in the lil bar on the bottom.... that is a code that is embedded into the script of the browser, but if you want to change it you can use the code

    Code:
    <a href="URL.html" onmouseover="javascript:document.setDefaultStatus='YOUR MESSAGE'" onmouseout="javascript:document.setDefaultStatus=' '">LINK TITLE</a>

  7. #7
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Note that that code will be ignored by most browsers with default settings.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  8. #8
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    I think we may be casting our pearls before swine here, Twey. You are right though, and that is only a part of the story. For those whose browsers will allow these type of shenanigans, and who rely upon the status bar information for whatever reason, this type of coding will be very disconcerting, to say the least. At the same time, most folks just ignore it anyway so, what's the point? The only value I can think of would be to either:

    1 ) More faithfully report what a javascript altered link will do.

    or:

    2 ) Deceive users as to what will actually happen if they click on the link.

    In the first case, thoughtful coding usually can take care of that without having to resort to directly altering the status object. In the second case, shame on you.

    Still we haven't heard back from hariprasad as to why he/she wants to do this, so I reserve judgement on those motives until such time as they are revealed to me. Pissa can't really be faulted too much, just giving the OP what they asked for.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  9. #9
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    And I think (insert fanfare here), that you should leave it alone. Non-complient will ignore it, and users won't know what's going on
    - Mike

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •