Results 1 to 11 of 11

Thread: How can I stop showing URLs at bottom of browser?

  1. #1
    Registered
    Join Date
    Jan 2006
    Posts
    53

    How can I stop showing URLs at bottom of browser?

    I would like to stop showing URLs at bottom of browser in following cases:

    1. When someone moves with mouse to images on my site to click, I don't want to show at bottom of browser my 'affiliate' URL! How can I do that?

    2. When visitors coming to my site, I also don't want to show URLs at bottom of browser when my site is downloading!

    How can I do above mentioned? Which code do I need to add?

    Many thanks!

  2. #2
    Working. Masetek's Avatar
    Join Date
    Aug 2005
    Location
    Aust
    Posts
    543
    <A href="jmouse.htm" onMouseover="window.status='SOMETEXTHERE'; return true"
    onMouseout="window.status=' '; return true">Place your mouse here!</A>

    Replace "SOMETEXTHERE" with a good looking URL. That should do the trick

  3. #3
    Site Contributor KLB's Avatar
    Join Date
    Feb 2006
    Location
    Saco Maine
    Posts
    1,181
    You should be aware that most current browsers are now disabling the "window.status" trick and are preventing websites from hiding or disguising the URL in the status bar for security and phishing reasons.
    Ken Barbalace - EnvironmentalChemistry.com (Environmental Careers, Blog)
    InternetSAR.org: Volunteers Assisting Search and Rescue via the Internet
    My Firefox Theme Classic Compact: Based onFirefox's classic theme but uses much less window space

  4. #4
    Working. Masetek's Avatar
    Join Date
    Aug 2005
    Location
    Aust
    Posts
    543
    I astually wasn't aware of that. I noticed in FF that if a site used window.status the status bar displayed nothing.

    In that case you could use an outgoing links script or even better use mod_rewrite to link to something like yoursite.com/link/blah.html and use a php script to redirect it.

  5. #5
    Administrator Chris's Avatar
    Join Date
    Feb 2003
    Location
    East Lansing, MI USA
    Posts
    7,055
    I haven't noticed it blocked.
    Chris Beasley - My Guide to Building a Successful Website[size=1]
    Content Sites: ABCDFGHIJKLMNOP|Forums: ABCD EF|Ecommerce: Swords Knives

  6. #6
    lol Vinnie's Avatar
    Join Date
    Nov 2003
    Location
    coral springs
    Posts
    120
    Quote Originally Posted by Chris
    I haven't noticed it blocked.
    Firefox has an option in its preferences to disable changing the status bar. I don't think it's on by default though.

    Opera also has weird status bar issues, but it's more about the timing of the mouseover/mouseout events than a conscious blocking effort.
    Vinnie Garcia - Web designer, programmer, pastry chef
    IBeBloggin' - a web design blog
    Web 2.Oh! (BETA) - laugh at the tag clouds
    Rails Forum (BETA) - Learn about Ruby on Rails

  7. #7
    Registered platinum's Avatar
    Join Date
    Mar 2006
    Location
    Adelaide
    Posts
    19
    you can always link out via a seperate script, ie your link may just be redirect.php?url=1
    which would then head them off in the right direction without having a huge messy URL and/or putting them off clicking.

  8. #8
    Working. Masetek's Avatar
    Join Date
    Aug 2005
    Location
    Aust
    Posts
    543
    Quote Originally Posted by platinum
    you can always link out via a seperate script, ie your link may just be redirect.php?url=1
    which would then head them off in the right direction without having a huge messy URL and/or putting them off clicking.
    So what I said

    Nice to see someone here from Adelaide!

  9. #9
    Registered platinum's Avatar
    Join Date
    Mar 2006
    Location
    Adelaide
    Posts
    19
    haha your'e right, sorry, it was late, and i wasn't reading closely enough.

  10. #10
    Registered
    Join Date
    Mar 2004
    Location
    Philadelphia, PA
    Posts
    106
    The other advantage to using a separate script that redirects to the actual destination of your outbound links instead of linking directly is that you can then ban spiders from reaching that URL. That lets you precisely control the outbound pagerank from your pages.
    I'm Dan. This is my blog. I give you... free web stats.

  11. #11
    Working. Masetek's Avatar
    Join Date
    Aug 2005
    Location
    Aust
    Posts
    543
    Also...

    You can track who's clicking what links where and optimise your site accordingly.

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
  •