Me encontré con el problema de que no cierro las ventanas del modelo asociadas con este script desde el teléfono, el botón de cierre no está presionado. A la vez desde el ordenador todo funciona bien
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); } } }); }