Вы можете попробовать добавить атрибут onLoad="functionYouCallToStartPlaying()"
к тегу тела вашего сайта.
Или:
<script>
function checkIfDefaultPage(pageAddress)
{
//basically check if the user is on the homepage and you have no #play in the URL,
//so the URL does not become http://12-3.co.uk/#play#play
if((pageAddress == "http://12-3.co.uk")||(pageAddress == "http://12-3.co.uk/"))
return true;
return false;
}
function jsRedirect()
{
if(checkIfDefaultPage(Document.Location))
Document.Location = Document.Location + "#play";
}
</script>
при наличии
<body onLoad="jsRedirect();">
Это может заставить перенаправление JavaScript работать на вас.
РЕДАКТИРОВАТЬ: Вдохновение для предотвращения проблемы Document.Location, где вы можете перенаправить несколько раз, находится здесь .