Georgi Dimitrov
Georgi Dimitrov

Reputation: 244

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?

Upvotes: 0

Views: 973

Answers (2)

WillD
WillD

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

Felipe Jacob
Felipe Jacob

Reputation: 394

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

Upvotes: 1

Related Questions