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
This is a duplicate of:
How to change the href for a hyperlink using jQuery
One scenario it doesn't mention is if you set an id on your anchor that needs to be changed then you can use the id as a selector in jQuery.
$("#LinkId").attr('href', "http://account.google.com?gsec=account")