This snippet helps in fetching the modal content via Ajax:
$.get(href, function(response) {
$("#myModal .modal-content").html(response);
});
Keep in mind, that the HTML response fetched, must containg the dom-elements normally present inside the "modal-content" element:
BODY