1.

Change The Url For A Hyperlink Using Jquery?

Answer»

There are THREE way to CHANGE the URL for a Hyperlink using jQuery.

  1. $("a").ATTR("href", "http://www.wisdomjobs.com/");
  2. $("a[href='http://www.wisdomjobs.com/']") .attr('href', 'http://wisdomjobs.com/');
  3. $("a[href^='http://wisdomjobs.com']").each(FUNCTION(){ this.href = this.href.replace(/^http: / / beta.wisdomjobs.com/, "http://wisdomjobs.com"); });

There are three way to change the URL for a Hyperlink using jQuery.



Discussion

No Comment Found