No consigo implementar este ejemplo de showbox que tiene esta página
http://www.apartmentsramblas.com/
Abajo del todo a la derecha donde pone "send to a friend" o "enviar a un amigo". Al pulsar sobre el enlace se abre en medio de la pantalla un showbox en ajax con un formulario.
¿Sabe alguien como conseguir este efecto? me he vuelto loco intentando descifrarlo de esa página pero tiene un porrón de .js
Y aunque he encontrado (creo) la funcion no la sé ejecutar
Código ajax:
Ver original
function sendFriendQ() { var textSbj=$("#showbox input[name='textSbj']").val(); var textFrom=$("#showbox input[name='textFrom']").val(); var textToFriend=$("#showbox input[name='textToFriend']").val(); var textMsg=$("#showbox textarea[name='textMsg']").val(); var checkedMail=false; if($("#showbox input[name='chkMail']").is(':checked')){checkedMail=true;} $.ajax({ type: "POST", url: "/GlobalServices.asmx/SendFriend", data: "{'emailFrom':'"+textFrom+"'," + "'emailTo':'"+textToFriend+"'," + "'subject':'"+textSbj+"'," + "'message':'"+textMsg+"'," + "'idIdioma':'" + ididioma + "'," + "'audit':'" + checkedMail+ "'" + "}", contentType: "application/json; charset=utf-8", dataType: "json", cache: false, success: function(result) { $("#showbox .content-popup .errorMsg").remove(); if(result.d.Success){$("#showbox .content-popup").html("");$("#showbox .content-popup").append(errorMsg(result.d.StatusMessage)); }else{$("#showbox .content-popup").prepend(errorMsg(result.d.StatusMessage));} }, error: function(result) {} }); }