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 = windo
$(function() { if ( document.location.href.indexOf('#Work') > -1 ) { $('#elementID').animate({"left": "250"}, "slow"); } });