on load open model popup using bootstrap?

7.5k Views Asked by At

model is opening on click :

 <a href="#" data-remodal-target="test" >test</a>

my model code is :

 <div class="remodal" data-remodal-id="test">
    <h3 class="modal-middle-heading">Buy</h3>
    <p>Please select your desired gift city.</p>
    <form class="login-form">
        <input type="text" placeholder="Search City" />
    </form>
    <button>Search</button>
</div>

How can I open model on load ?

2

There are 2 best solutions below

0
On BEST ANSWER

Assuming you are using remodal, you could just programmatically open the model on your onload event. Something like this:

  window.onload = function () {                                                
    $('[data-remodal-id=test]').remodal().open();                              
  }; 

See demo

0
On

Try this,

<script type="text/javascript">
    $(window).load(function(){
        $('#test').modal('show');
    });
</script>