vote up 2 vote down star
1

Hi,

I have some jQuery JavaScript code that I want to run only when there is a hash (#) anchor link in a URL. How can you check for this character using JavaScript? I need a simple catch-all test that would detect URLs like these:

  • example.com/page.html#anchor
  • example.com/page.html#anotheranchor

Basically something along the lines of:

if (thereIsAHashInTheUrl) {

    do this;

} else {

    do this;

}

If anyone could point me in the right direction, that would be much appreciated.

flag

3 Answers

vote up 8 vote down check

Simple:

if(window.location.hash) {
  // Fragment exists
} else {
  // Fragment doesn't exist
}
link|flag
Additional: the .location object is only available on the current window's URL, you can't do this for an arbitrary URL (e.g. one stored in a string variable) – Gareth Nov 18 '08 at 11:39
vote up 0 vote down

Have you tried this?

if (url.indexOf("#") != -1)
{
}

(Where url is the URL you want to check, obviously.)

link|flag
vote up 3 vote down

Hi buddy: put the following:

<script type="text/javascript">
    if (location.href.indexOf("#") != -1) {
        // Your code in here accessing the string like this
        // location.href.substr(location.href.indexOf("#"))
    }
</script>

Good luck!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.