Skip to content

Instantly share code, notes, and snippets.

@ducdhm
Last active December 15, 2015 23:49
Show Gist options
  • Save ducdhm/5342993 to your computer and use it in GitHub Desktop.
Save ducdhm/5342993 to your computer and use it in GitHub Desktop.
var redirectTo = function (url) {
var anchor = document.createElement('a');
anchor.href = url;
document.body.appendChild(anchor);
anchor.click();
};
redirectTo('http://coccoc.com');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment