I only have access to 2 fields. The head and body section and I can only edit inside these tags not these actual tags. What I'm needing is to play a mp3 sound upon entering the site but I can only have it played once. Even if the back button is hit. So I was thinking cookie via JavaScript. Here's what I have but I'm just starting with JS and need some help.
Code:
<script language="javascript">
if (!getCookie('lastClip')) {document.write('<EMBED SRC="http://www.domain.com/mp3file.mp3" AUTOSTART="true" VOLUME="50" HEIGHT="60" WIDTH="144" HIDDEN="TRUE">')
setCookie('lastClip',true,3600000)
}
</script>
|