Код: Выделить всё
var myModal = new bootstrap.Modal(document.getElementById("termsModal"), {});
$('.openTerms').on('click',function(e){
e.preventDefault();
$('.modal-body').load('/terms-and-conditions', function(){
myModal.show();
});
});
Код: Выделить всё
var myModal = new bootstrap.Modal(document.getElementById("termsModal"), {});
$('.openTerms').on('click',function(e){
e.preventDefault();
$('.modal-body').load('/terms-and-conditions#body', function(){
myModal.show();
});
});
Подробнее здесь: https://stackoverflow.com/questions/785 ... arget-page