TECRIDIBLE
i just want to set up popup box and sound on opening site code needed and must support all browser
Graham
TECRIDIBLE if you use actual popups most browsers will block them
so here is a simple javascript alert box
https://www.w3schools.com/js/js_popup.asp
as for sound it depends how far back in ancient history you want to go but this would cover most
<audio autoplay><source src="/audio/sound.mp3" type="audio/mpeg"><object style="height:0;width:0;overflow:hidden" data="/audio/sound.mp3" type="audio/mpeg" autostart="true"></object></audio>
Copy code