Well, the title may be sounds easy, but what i want is to do the same thing from browser address bar (my page contains many videos ). i tried
javascript:videoelement=document.getElementById("vid1");videoelement.pause();
It doesn't works anyway.
suppose my code is
<html>
<body>
<embed src="https://myaudio.mp3" autoplay="false" height="100" width="300">
</body>
</html>
how can i pause/paly the player?
javascript:document.getElementsByTagName("embed").pause();
^^^ not working