var $this = jQuery(this), link = $this.attr('href');

or use a closure:

(function($) {
    var $this = $(this), link = $this.attr('href');
})(jQuery);


On Jun 26, 6:11 pm, Pegpro <[EMAIL PROTECTED]> wrote:
>  I am using this line:
> var $this = $(this), link = $this.attr('href');
>
> However I have had to use jQuery.noConflict()
> How do I use jQuery() with this?

Reply via email to