jquery: if url contains #work then do something

Eddie picture Eddie · Apr 22, 2011 · Viewed 48k times · Source

I tried to write a script which allow me to load certain events when I enter specific url.

My code looks like this:

$(function(){
    var url = window.location.pathname;
    $("url:contains('#Work')").animate({"left": "250"}, "slow");
});

But it doesnt work. Any suggestions? Any help is appreciated.

Answer

Ketan Modi picture Ketan Modi · Apr 22, 2011
$(function() {
    if ( document.location.href.indexOf('#Work') > -1 ) {
        $('#elementID').animate({"left": "250"}, "slow");
    }
});