How can you change the href for a hyperlink using jQuery?
...Will modify the href of all hyperlinks to point to Google. You probably want a somewhat more refined selector though. For instance, if you have a mix of link source (hyperlink) and link target (a.k.a. "anchor") anchor tags:
...Then you probably don't want to accidentally add
Of course, you'll probably have something more interesting in mind. If you want to match an anchor with a specific existing
This will find links where the
The first part selects only links where the href starts with |
|||||||||||||||||
|
|
With jQuery 1.6 and above you should use:
The difference between prop and attr is that attr grabs the HTML attribute where as prop grabs the DOM property. You can find more details in this post: .prop() vs .attr() |
|||||||||
|
|
Use the
|
|||
|
|
|
Depending on whether you want to change all the identical links to something else or you want control over just the ones in a given section of the page or each one individually, you could do one of these. Change all links to Google so they point to Google Maps:
To change links in a given section, add the container div's class to the selector. This example will change the Google link in the content, but not in the footer:
To change individual links regardless of where they fall in the document, add an id to the link and then add that id to the selector. This example will change the second Google link in the content, but not the first one or the one in the footer:
|
||||
|
|
|
This snippet invokes when a link of class 'menu_link' is clicked, and shows the text and url of the link. The return false prevents the link from being followed.
|
|||||||||
|
protected by Community♦ May 18 '12 at 10:54
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.