If I wanted to auto-click a button element on page load, how would I go about this using jQuery?
The button html is
<button class="md-trigger" id="modal" data-modal="modal"></button>
Any help on this topic would be greatly appreciated! Thanks in advance!
You would simply use jQuery like so...
Use the click function to auto-click the #modal button
We should rather use Javascript.
Use the following code
JavaScript Pure:
JQuery:
or
I tried the following ways in first jQuery, then JavaScript:
jQuery:
This is the best way in JavaScript: