Jump to content

JavaScript: Hide link from Statusbar

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
49 replies to this topic

#1
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
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:-


<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

Attached Files



#2
gurzilla

gurzilla

    Newbie

  • Members
  • Pip
  • 1 posts
Hi and thank you

#3
prisoner

prisoner

    Newbie

  • Members
  • Pip
  • 1 posts
hey thanks for this

#4
saqib447

saqib447

    Newbie

  • Members
  • Pip
  • 1 posts
thanks

#5
jasonsuzuki

jasonsuzuki

    Newbie

  • Members
  • Pip
  • 2 posts
I've been searching this.Thanks dude.

#6
mochj

mochj

    Newbie

  • Members
  • Pip
  • 1 posts
Haven't tried it yet - had to post so I could try it. Thanks - I guess it works!

Cheers
Jane

#7
Guest_Jaan_*

Guest_Jaan_*
  • Guests
oh.. that's cool.. thank you :)

#8
blakeph

blakeph

    Newbie

  • Members
  • Pip
  • 1 posts
thank!

#9
laserdude45

laserdude45

    Learning Programmer

  • Members
  • PipPipPip
  • 36 posts
The problem is, if you right click on it, you can see the link clearly in the status bar :P

Nice though :)
Free web hosting
Shadowlan Technologies, for all your freelancing needs. Shoot me a PM...

#10
ljzxtww

ljzxtww

    Newbie

  • Members
  • Pip
  • 1 posts
thank you for help for the hide code

#11
karsh

karsh

    Newbie

  • Members
  • Pip
  • 1 posts
Thank you, very nice.

#12
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
Thanks you are welcome.