jqueryhtmlbuttonmodal-dialogpageload

Auto-click button element on page load using jQuery


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>

Solution

  • You would simply use jQuery like so...

    <script>
    jQuery(function(){
       jQuery('#modal').click();
    });
    </script>
    

    Use the click function to auto-click the #modal button