quick html ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Fat Panda
    Porn is Dead. Move along.
    • Aug 2006
    • 13296

    #1

    quick html ?

    what is a simple way to place the same text at the bottom of a internet browser when someone hovers over any link on the page?
  • StuartD
    Sofa King Band
    • Jul 2002
    • 29903

    #2
    onMouseOver="window.status='your text here'; return true;" onMouseOut='window.status=''; return true;"
    This is me on facebook
    This is me on twitter

    Comment

    • Fat Panda
      Porn is Dead. Move along.
      • Aug 2006
      • 13296

      #3
      Originally posted by StuartD
      onMouseOver="window.status='your text here'; return true;" onMouseOut='window.status=''; return true;"
      can i put this inbetween the <head> tags and it will do it for every link on the page

      Comment

      • 2012
        So Fucking What
        • Jul 2006
        • 17189

        #4
        ... not html

        Originally posted by SAC
        can i put this inbetween the <head> tags and it will do it for every link on the page
        you're thinking functions ... not a javascript expert but it may look something like this ... i don't have one.

        Code:
        <head>
        <script language="JavaScript" type="text/JavaScript">
        someFunction('some shit'){... your function ...};
        anotherFunction('more shit'){... your function ...};
        </script>
        </head>
        then in your links ...
        Code:
        <a href="funtime" onMouseOver="someFunction('xxx');" onMouseOut="anotherFunction('poop');">javascript</a>
        best host: Webair | best sponsor: Kink | best coder: 688218966 | Go Fuck Yourself

        Comment

        Working...