I have some video tags in my project, using this piece of code:
<video preload="metadata" src="someVideo.mp4"></video>
And the problem? IDM (Internet Download Manager) pop-ups appear, asking if I want to download the videos! And, I don’t like this pop-up to appear for the user when I deploy it on some server.
What’s odd is that only when I open this URL http://localhost:5500/index.html
this problem happens, but if I open this URL http://192.168.1.148:5500/index.html
nothing happens and it works as I expected (no IDM pop-ups)!
NOTE: When I run live server
using VS Code
, it takes me to this URL, http://192.168.1.148:5500/index.html
by default… Is this URL the correct one? Or http://localhost:5500/index.html
should have the same behavior?
EDIT:
I used this link, but setting preload
to none
, while using this URL http://localhost:5500/index.html
, doesn’t disappear the IDM pop-ups…