Is there a way to automatically trigger the Bootstrap model upon page load?
I attempted implementing the following code in my index file:
<script type="text/javascript>
$(window).load(function () {
$('#myModal').modal('show');
});
</script>
However, the feature seems to be ineffective at the moment.