Link Directories

Discussion in 'Link Development' started by ramix, Nov 23, 2006.

  1. #1
    why link directoris help the website promotion??
    links there are not direct links, and you get a link from a low PR usualy from 0 .
    but still, every body submit those directories!!
    is there any other explanation?
     
    ramix, Nov 23, 2006 IP
  2. daboss

    daboss Guest

    Messages:
    2,249
    Likes Received:
    151
    Best Answers:
    0
    Trophy Points:
    0
    #2
    because:
    1. a link is a link is a link - even a lowly pr 0 page link ;)
    2. most of them are free
    3. there are tests done where sites get a pr 4 simply by submitting to directories

    btw, why do you say that these are not direct links? almost all directories these days provide direct links that are se friendly... ???
     
    daboss, Nov 23, 2006 IP
  3. zokiii

    zokiii Peon

    Messages:
    656
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Because you get free one way links with keyword in anchor .

    What can be better :D
     
    zokiii, Nov 23, 2006 IP
  4. ramix

    ramix Peon

    Messages:
    63
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    i see in alot of directories that the count the clicks, and from what i know that it kills the link... is it effective to put a link in such a dir?
     
    ramix, Nov 23, 2006 IP
  5. Cryogenius

    Cryogenius Peon

    Messages:
    1,280
    Likes Received:
    118
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Most directories count clicks with javascript onMouseClick event, which won't interfer with the link itself.
     
    Cryogenius, Nov 23, 2006 IP
  6. ramix

    ramix Peon

    Messages:
    63
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    can you give me an example of that ?
     
    ramix, Nov 23, 2006 IP
  7. Cryogenius

    Cryogenius Peon

    Messages:
    1,280
    Likes Received:
    118
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Here's an example: http://www.theseoking.com/detail/link-30013.html
    If you look at the HTML source code, you'll see that the hyperlink is a regular one with an additional ID property. Down the bottom there is this bit of javascript:

    <a id="id_30013" href="http://www.cryosphere.f2s.com/articles/games/" title="Computer and Video Games: Advice and Tips">Computer and Video Games: Advice and Tips</a>
    
    <script type="text/javascript">
       var root = '';
       var a = document.getElementsByTagName("a");
       for(i = 0; i< a.length; i++)
          if(a[i].id != '')
             a[i].onclick = count_link;
       function count_link() {
          i = new Image();
          i.src= root+'/cl.php?id='+this.id;
          return true;
       }
    </script>
    Code (markup):
    So, whenever there's a click on a hyperlink, there's another call made to "cl.php?id=id_30013", but this is seperate from the main link. Search engines will not see the javascript.

    Cryo.
     
    Cryogenius, Nov 23, 2006 IP
  8. ramix

    ramix Peon

    Messages:
    63
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #8
    thanks for the script, it's interesting.
    a question about it, if i use this script in one site, but i count the clicks on another site, it will work also?
    i mean, if i the root will be www.site.com that is another site than the link placed in, will it work?
     
    ramix, Nov 24, 2006 IP