movieprodw
asked on
Modal Window Onload
Hello,
I just want to have a modal window show an alert on page load.
http://getbootstrap.com/javascript/#modals
Can you please tell me how to trigger this on page load.
I just want to have a modal window show an alert on page load.
http://getbootstrap.com/javascript/#modals
Can you please tell me how to trigger this on page load.
<!-- Small modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-sm">Free Shipping</button>
<div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel">
<div class="modal-dialog modal-sm">
<div class="modal-content">
Did you know if you purchase 4 or more, you qualify for free shipping!
</div>
</div>
</div>
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER