Question:How can the href for a hyperlink be changed using jQuery?
A $("a").link("http://www.google.com/");
B $("a").change("href","http://www.google.com/");
C $("a").link("href","http://www.google.com/");
D $("a").attr("href", "http://www.google.com/");
+ AnswerD
+ Report