Reputation: 244
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?
Upvotes: 0
Views: 973
Reputation: 6512
Here's a way to do this with event listeners and the DOMContentLoaded event.
window.addEventListener('DOMContentLoaded', () => {
document.getElementById('id').click()
});
Upvotes: 1