hidding actual url on mouseover... ???

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • zentz
    Confirmed User
    • Nov 2003
    • 8062

    #1

    hidding actual url on mouseover... ???

    i forgot how to do that..
    i want something like this...

    actual url...

    a) http://www.lustypuppy.com/cgi-bin/at...ww.cloland.com
    b) http://www.lustypuppy.com/cgi-bin/at...tickyjuice.com


    result...

    a) http://www.cloland.com
    b) http://stickyjuice.com

    anyone ?
    Programs that owe me money ---- Epassporte.com ~ $2700 | Protraffic.com ~ $2600 | XonDemand.com ~ $3000

    Email: [email protected]
  • brand0n
    been very busy
    • Nov 2002
    • 26983

    #2
    lol are you a webmaster?
    want to buy this spot for cheap? it is of course for sale. long term deals are always the best bet. brand0n/ at/ a o l dot commies.

    Comment

    • StuartD
      Sofa King Band
      • Jul 2002
      • 29903

      #3
      Code:
      onmouseover="window.status='http://www.domain.com';return true" onmouseout="window.status='';return true"
      This is me on facebook
      This is me on twitter

      Comment

      • zentz
        Confirmed User
        • Nov 2003
        • 8062

        #4
        Originally posted by brand0n
        lol are you a webmaster?
        no, do you have cock or a pussy ?
        Programs that owe me money ---- Epassporte.com ~ $2700 | Protraffic.com ~ $2600 | XonDemand.com ~ $3000

        Email: [email protected]

        Comment

        • zentz
          Confirmed User
          • Nov 2003
          • 8062

          #5
          Originally posted by NichePay - StuartD
          Code:
          onmouseover="window.status='http://www.domain.com';return true" onmouseout="window.status='';return true"
          thanks...
          Programs that owe me money ---- Epassporte.com ~ $2700 | Protraffic.com ~ $2600 | XonDemand.com ~ $3000

          Email: [email protected]

          Comment

          • d00t
            Confirmed User
            • Sep 2002
            • 3766

            #6
            copy it from google?

            Comment

            • zentz
              Confirmed User
              • Nov 2003
              • 8062

              #7
              Originally posted by d00t
              copy it from google?
              this way was faster
              Programs that owe me money ---- Epassporte.com ~ $2700 | Protraffic.com ~ $2600 | XonDemand.com ~ $3000

              Email: [email protected]

              Comment

              • Paco, of Large Cash.
                Confirmed User
                • Jun 2002
                • 2267

                #8
                The folowing script hides the actual URL of any chosen link.
                You have to tweak the code that goes in the HEAD for this to work.
                The unprotected link is simply a normal link.

                IN THE HEAD

                <SCRIPT LANGUAGE="JavaScript">
                <!-- Original: BOOGIE WOOGIE([email protected]) -->
                <!-- Web Site: http://www.boogie.com/woogie -->

                <!-- This script and many more are available free online at -->
                <!-- The JavaScript Source!! http://javascript.internet.com -->

                <!-- Begin
                function url() {
                hidden = open('http://javascript.internet.com/new/','NewWindow','top=0,left=0,width=1020,height=710, status=no,resizable=yes,scrollbars=yes');
                }

                // any of the above window parameters can be changed,
                // but if you want the link to remain hidden do not
                // change 'status=no'

                // End -->
                </script>


                IN THE BODY
                <a href="javascript:url()">Protected Link</a> |
                <a href="http://javascript.internet.com/new/">Unprotected Link</a>
                <br>
                <br>
                (Look at the Status Bar)

                <p><center>
                <font face="arial, helvetica" size"-2">Free JavaScripts provided<br>
                by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
                </center><p>

                Comment

                Working...