bootstrap modal load url code example
Example 1: bootstrap show modal on page load
<script type="text/javascript">
$(window).on('load',function(){
$('#myModal').modal('show');
});
</script>
Example 2: bootstrap modal lg
@media (min-width: 768px) {
.modal-xl {
width: 90%;
max-width:1100px;
}
}