Looking for Script

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ed

    Looking for Script

    I am looking for a script that hides your email address in your web page
    from spiders, robots, etc....
    Can someone tell me where to find one and do they work?


    Thanks
    Ed





  • John

    #2
    Re: Looking for Script


    "Ed" <elpedro@mindsp ring.com> schreef in bericht
    news:borseo$1dh jg6$1@ID-201461.news.uni-berlin.de...[color=blue]
    > I am looking for a script that hides your email address in your web page
    > from spiders, robots, etc....
    > Can someone tell me where to find one and do they work?
    >
    >
    > Thanks
    > Ed
    >[/color]

    Hi Ed

    This may be the script you are looking for

    <script language="JavaS cript"><!--
    var name = "yourname"; var domain = "yourdomain ";
    document.write( '<a href=\"mailto:' + name + '@' + domain +'\" +
    style=\"cursor: default\"+>');
    // --></script>
    <img border="0" src="picture to click on">
    <script language="JavaS cript"><!--
    document.write( '</a>');
    // --></script>


    Greetings

    John





    Comment

    • Fabian

      #3
      Re: Looking for Script

      Ed hu kiteb:
      [color=blue]
      > I am looking for a script that hides your email address in your web
      > page from spiders, robots, etc....
      > Can someone tell me where to find one and do they work?[/color]

      One relatively simple way is to encode the relevant part as html escape
      characters instead of simple ascii. Unipad is one program that makes
      this conversion painless. Those spambots cant seem to find encoded
      characters.


      --
      --
      Fabian
      Visit my website often and for long periods!
      AGAM69 menghadirkan inspirasi desain kreatif, solusi digital, pengembangan teknologi, serta inovasi modern untuk kebutuhan bisnis dan profesional.


      Comment

      • Thomas 'PointedEars' Lahn

        #4
        Re: Looking for Script

        Ed wrote:
        [color=blue]
        > I am looking for a script that hides your email address in your web page
        > from spiders, robots, etc....
        > Can someone tell me where to find one[/color]

        Google is your friend. [psf 6.1]
        [color=blue]
        > and do they work?[/color]

        No, since client-side JavaScripz is then required and users without it
        cannot use the address. They are scriptkiddie bullshit and therefore to
        be avoided. Server-side formmailer scripts are much more reliable (see
        the discussion about `mailto:' URIs a few days before) and free you from
        using e-mail addresses in your document(s).


        PointedEars

        Comment

        • Mario

          #5
          Re: Looking for Script

          <script language="Javas cript">
          <!--

          var name = "info"
          var domain = "anouksweb. nl"
          document.write( "<a href='mailto:" + name + "@" + domain + "'>")
          document.write( name + "@" + domain)
          document.write( "</a>")
          //-->
          </script>

          I think you can put this between your <body> then you have no spam ....

          Greetz Mario




          Comment

          • Thomas 'PointedEars' Lahn

            #6
            Re: Looking for Script

            Mario wrote:
            [color=blue]
            > <script language="Javas cript">[/color]

            <script type="text/javascript">
            [color=blue]
            > [...]
            > document.write( "</a>")[/color]

            Assuming that you are using HTML because of the deprecated use of the
            `language' attribute for the `script' element, you need to escape ETAGO
            delimiters within script code that is to be placed within HTML:

            document.write( "<\/a>");

            BTW, it is good style to end JavaScript statements with `;'.
            [color=blue]
            > [...]
            > I think you can put this between your <body> then you have no spam ....[/color]

            What part of

            | No, since client-side JavaScripz is then required
            | and users without it cannot use the address.
            (s/pz/pt/)

            did you not understand? And why do you post a followup to *my* posting
            but not referring to it in your text?
            [color=blue]
            > www.kluivie.nl[/color]

            "Advertisin g the same service"? Put that into your signature.


            PointedEars

            Comment

            Working...