Skip to content

Instantly share code, notes, and snippets.

@mak00s
Created November 5, 2017 11:10
Show Gist options
  • Save mak00s/fcff3d70aa8b4690bb9e49c38f726617 to your computer and use it in GitHub Desktop.
Save mak00s/fcff3d70aa8b4690bb9e49c38f726617 to your computer and use it in GitHub Desktop.
キャンペーン用URLパラメータをキレイにする(s_code.js)part 2 of 2
// s.t();の後に下記を追加する
if (location.hash && location.hash.match(/#cid=.+/)) {
if ('replaceState' in history)
history.replaceState('', document.title, location.pathname + location.search);
else window.location.hash = '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment