I ran into a problem that I do not close model windows associated with this script from the phone, fa-close button is not pressed. At the same time from the computer everything works fine
function NpcObject(type){
$.ajax({
url: "/do/Npc/",
type: "post",
data: {
type: type
},
success: function (response) {
response = JSON.parse(response);
if(!response['error']){
var tpl = '<div class="model"><div class="header">'+response['title']+'<span onclick=$(".model").remove();><i class="fa fa-close"></i></span></div>';
tpl += '<div class="content-model">';
if(response['type'] == 'pokemarket'){
tpl+= response['html'];
}else if(response['type'] == 'reproduction'){
tpl+= response['html'];
}else if(response['type'] == 'lombard'){
tpl+= response['html'];
}else{
tpl+= '<div class="pit"><input id="pitInput" placeholder="'+Lang.search_pokemon+'" onkeypress=if(event.keyCode==13)nursery("search"); type="text">';
tpl+= '<div class="pok-1">'+response['html'];
tpl+= '';
tpl+= '</div></div></div>';
}
tpl += '</div>';
$("body").append(tpl);
$('.model').draggabilly({
handle: '.header',
containment: true
});
}else{
alert(Lang.error_no_way);
}
}
});
}