Not a great way to do this in JavaScript in my opinion, but these will work pretty close:
HTTP Redirect
window.location.replace("http://www.blakepell.com");
Link Click
window.location.href = "http://www.blakepell.com";
Not a great way to do this in JavaScript in my opinion, but these will work pretty close:
window.location.replace("http://www.blakepell.com");
window.location.href = "http://www.blakepell.com";