Answers for "js get hashtag from url"

1

get hash from url

window.location.hash = '#hash_value';
Posted by: Guest on June-03-2020
0

Javascript check for hash in URL

if (location.href.indexOf("#") != -1) {
    //current url has a #hash in it
}
Posted by: Guest on July-26-2019
0

javascript hashtag url

var hash = window.location.hash;
if (hash) {
  // Fragment exists
  hash = hash.substring(1);
  console.log(hash);
} else {
  // Fragment doesn't exist
}
Posted by: Guest on February-27-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language