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=acco
lets say you have this:
you should use this:
var newHref = "http://google.com"; $("#myLink").attr('href', newHref );