Search code examples
javascripthtmlhyperlinkhref

How to click on a link on page load in html?


I have a page with the following link:

<a id="id" href="{{ stream.video_url }}" style="text-decoration: none;" download="{{ title }}.{{ stream.extension }}" target="_blank" >Download</a>

I want to automatically activate this when the page loads. How can I do this?


Solution

  • <body onload="document.getElementById('id').click()">