hiding outbound links?

hiding outbound links?


Hello Folks,  
 
I was using http://www.darxx.com/ to check my website...  at the bottom of the analysis page I got the following msg.
 
 
  • Tip:
    Change outbound links with jQuery:

    css:
    .hreflink{cursor:pointer;}

    html:
    <span class="hreflink" title="http://www.darxx.com">Darxx</span>

    Jquery example:
    $(".hreflink").click(function(){
    window.location.href = $(this).attr('title');
    });











  •  

    I am sort of lost of how to make this work.   I am NOT a JS person. :)   Can someone please fill in the blanks?  The CSS seems pretty straight forward and so does the HTML... its the jquery example and how to link it all together that seems to be my main problem.

    I did do some reading on jquery and just got myself very confused... :)   I dloaded the jquery.js mini and renamed it jquery.js  and added

    <script type="text/javascript" src="jquery.js"> in the <head> part of my html
    I also tried to just copy the 3rd part of the code by itself into the jquery.js 
    file. I think my problem when looking around is that my problem is 2 basic 
    for what jquery can really do.

     

    Thanks in advance for any help or suggestions. 

    whonoes