Friday, April 9, 2010

click on a link (follow) via jQuery/JavaScript

2 comments:

  1. I am brazilian but I had to comment. Your article was just what I need. Thanks.

    ReplyDelete
  2. how about something like this?

    jQuery.fn.followLink = function() {
    $.browser.msie ? : this.click() : window.location = this.attr('href');
    return this;
    }

    ReplyDelete