Your zoom works, it's just hidden behind your modal.
Adjust the z-index of your enlarged image to be above the modal.
.zoomContainer{ z-index: 9999;}
.zoomWindow{ z-index: 9999;}
.elevateZoom() show
( Bootstrap 3)
$(document).ready(function () {
$('#myModal').on('shown.bs.modal', function() {
$("#zoom_05").elevateZoom({
zoomType: "inner",
cursor: "crosshair"
});
})
});