My aim is to get the page to reload when a Bootstrap modal is closed. The user can close the modal by clicking on the close button or icon or by clicking away from the modal. >
You can bind the event to reload page on click of close:
$('#myModal').on('hidden.bs.modal', function () { location.reload(); })
Demo