A site I am working on has links for add to cart I would like to change that link to point to different page how can I achieve this in jquery.
$(document).ready(function() {
//alert('Welcome to StarTrackr! Now no longer under police …');
$("a[href='http://www.somesite.com/scAddItem.aspx?action=add&BJID=421&extra=type,journalIssue,volume,2,issue,<web::ISSUE>,npus,$99.00,npcdn,$99.00']").attr('href', 'http://www.live.com/');
});
I am trying this got this idea from here How to change the href for a hyperlink using jQuery but it's not working for me any help is appreciated.