function getFeedbackForm (user_id) { $.getJSON('http://www.webprorab.com/ajax.php?page=mailbox&action=getFeedbackForm&user_id=' + user_id + '&jsonp=?', null, function(reply){ if(reply == null) { alert('Извените, пользователь возможно был удален или заблокирован.'); return false; } $.fancybox({ 'content': reply, 'width': 680, 'height': 555, 'autoDimensions': false, 'autoScale' : false, 'transitionIn' : 'none', 'transitionOut' : 'none' }); }, 'json'); } function sendFeedback(){ $('#feedbackForm .linkbt').hide(); $('#feedbackForm').append("Подождите..."); $.getJSON('http://www.webprorab.com/ajax.php?page=mailbox&action=sendFeedback&jsonp=?', $('#feedbackForm').formSerialize(), function(reply){ if(reply.result) { showNotification(N_JS_SENT); if(reply.textNotify) { $.fancybox({'content': reply.textNotify}); $('#feedbackForm .wait_b').remove(); $('#feedbackForm .linkbt').show(); $('#description, [name=data[name]], [name=data[phone]]').val(''); } else { location.reload(); } } else { $('#feedbackForm .wait_b').remove(); $('#feedbackForm .linkbt').show(); $('#savebad').html(reply.info); $('#savebad').fadeIn(300); } }) }