javascript - Play audio and Redirect to page after some time -
i working on project,i have implement functionality on page load have play audio file , while playing after seconds redirect other page. have used tag , it's onplaying event,but not working. can 1 suggest alternative?its not hitting function , showing no error in console below code
<embed src="contents/mp3/abc.mp3" height="0" width="0" autostart="true" onplaying="return redirecttosite();"></embed> function redirecttosite() { settimeout(window.location.href = "/default.aspx", 1000); }
what should altenate solution achieve this
Comments
Post a Comment