JQuery Cambiar página en clic
$('#link').click(function(){
alert("Clicked");
window.location.href="http://smashingmagazine.com";
});
FishBrawler
$('#link').click(function(){
alert("Clicked");
window.location.href="http://smashingmagazine.com";
});
$('#someButton').click(function() {
window.location.href = '/some/new/page';
return false;
});