I need to update href value thorughout the page using jquery.
Say href=”http://www.google.com?gsec=account” should be changed to href=”http://account.google.com?gsec=account” how i can get this done.
I need to update href value thorughout the page using jquery. Say href=http://www.google.com?gsec=account should
Share
This will do the replace throughout the page that I think you’re looking for.
Try it out: http://jsfiddle.net/dT8j6/
EDIT: This version allows for
https://and for links without thewww..Try it out: http://jsfiddle.net/dT8j6/1/
EDIT: If you only wanted to change elements that have
gsec=account, then change the selector to$('a[href*="gsec=account"]').