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. >
$('#myModal').on('hidden', function () { document.location.reload(); })
Demo