+ Reply to Thread
Page 5 of 5 FirstFirst ... 345
Results 41 to 50 of 50

Thread: JavaScript: Hide link from Statusbar

  1. #41
    mirze is offline Newbie
    Join Date
    Mar 2009
    Posts
    3
    Rep Power
    0

    Re: JavaScript: Hide link from Statusbar

    Hi!

    This function hides links in MSIE but not in Mozilla - any idea about that?

    Anther point: the link is visible when you click the link and while you hold down the mouse button - what can be done about that?

    Another problem: you click the link, you leave the mouse in the same position - and the link becomes visible (I found a solution for this one: you just add "onclick" event to your function).

    Miran

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #42
    mikelbring is offline Programmer
    Join Date
    Jul 2008
    Location
    Nebraska
    Posts
    118
    Rep Power
    0

    Re: JavaScript: Hide link from Statusbar

    Code:
    <a href="javascript:void(0);" onclick="window.location='URL';">Howdy</a>
    Another way.
    Realize the Web Web services and design.

  4. #43
    pogogirl is offline Newbie
    Join Date
    Mar 2009
    Posts
    1
    Rep Power
    0

    Re: JavaScript: Hide link from Statusbar

    Excellent code. Thank you so much!

  5. #44
    mirze is offline Newbie
    Join Date
    Mar 2009
    Posts
    3
    Rep Power
    0

    Re: JavaScript: Hide link from Statusbar

    The real solution is described here:
    roshanbh.com.np/2008/08/different-status-bar-text-hyperlink-mouseover.html

  6. #45
    mrmanps is offline Newbie
    Join Date
    Apr 2009
    Posts
    1
    Rep Power
    0

    Re: JavaScript: Hide link from Statusbar

    Quote Originally Posted by TcM View Post
    Introduction:-
    When you go over a link usually the URL is displayed on the status bar, this trick will hide the URL from the status bar and show nothing!

    Let's Start

    Here is the Code:-

    Code:
    <script language="Javascript">function hidestatus(){
    window.status=''
    return true
    }
    
    if (document.layers)
    document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
    
    document.onmouseover=hidestatus
    document.onmouseout=hidestatus</script>
    Proof:-
    Download the full code attached at the end

    Conclusion:-
    Well the Code is attached and feedback is welcome
    Great cheers mate

  7. #46
    Brakedirt is offline Newbie
    Join Date
    May 2009
    Posts
    1
    Rep Power
    0

    Re: JavaScript: Hide link from Statusbar

    thanks

  8. #47
    timmit is offline Newbie
    Join Date
    Jul 2009
    Posts
    1
    Rep Power
    0

    Re: JavaScript: Hide link from Statusbar

    seems to wrok for others, hopefully me too. Thanks

  9. #48
    Join Date
    Aug 2006
    Posts
    11,209
    Blog Entries
    6
    Rep Power
    101

    Re: JavaScript: Hide link from Statusbar

    It does work Have fun

  10. #49
    taoday is offline Newbie
    Join Date
    Jul 2009
    Posts
    1
    Rep Power
    0

    Re: JavaScript: Hide link from Statusbar

    good code

  11. #50
    robinpcs is offline Newbie
    Join Date
    Aug 2009
    Posts
    1
    Rep Power
    0

    Re: JavaScript: Hide link from Statusbar

    hi, thanks

+ Reply to Thread
Page 5 of 5 FirstFirst ... 345

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How to show and hide divs using JavaScript?
    By Bertan in forum JavaScript and CSS
    Replies: 3
    Last Post: 10-21-2011, 02:02 PM
  2. Link wheels ? Link generations ?
    By genux in forum Search Engine Optimization
    Replies: 3
    Last Post: 05-08-2011, 07:01 AM
  3. How can I hide my source code from my webpage? html-javascript
    By codehelp in forum JavaScript and CSS
    Replies: 4
    Last Post: 07-26-2010, 07:54 AM
  4. how to hide link
    By mangama in forum General Programming
    Replies: 43
    Last Post: 11-12-2008, 11:36 AM
  5. how to hide link
    By mangama in forum Tutorials
    Replies: 0
    Last Post: 10-27-2008, 08:28 AM

Tags for this Thread

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