model load bootstrap code example
Example 1: bootstrap show modal on page load
<script type="text/javascript">
$(window).on('load',function(){
$('#myModal').modal('show');
});
</script>
Example 2: open bootstrap modal with javascript
$("#myModal").modal()