変数に入っている URL にページをリダイレクトしたいのですが、アラートなしでは動作しません。
私がアラートを入れた場合、それ以外の場合はリダイレクトされません。
$(document).ready(function(){
$("a").click(function(){
var newurl = 'http://www.xyz.com/' + $(this).attr('href');
//$(this).attr(newurl,'href');
window.location.href = newurl;
alert(newurl);
});
});
事前に感謝
アンカータグ
<a href="includes/footer.jsp">new url</a>