auto loading model box in javascript code example
Example 1: bootstrap show modal on page load
<script type="text/javascript">
$(window).on('load',function(){
$('#myModal').modal('show');
});
</script>
Example 2: display modal without button click
$("#getCodeModal").modal("show");