base = 'http://www.vita-europe.com' $(window).ready(function() { $('form:not(#gallery-index)').submit(function() { if ($('input[name="TOS-accepted"]').length) { if (!$('input[name="TOS-accepted"]').attr('checked')) { alert("We ask that you accept our conditions of use before registering"); return false; } } $('form input, form textarea').attr({'disabled': true}); $('form input[type="submit"]').attr({'value': 'Sending...'}); $.post('php/post.php', {'post': 'form', 'name': $('input[name="name"]').attr('value'), 'email': $('input[name="email"]').attr('value'), 'country': $('input[name="country"]').attr('value'), 'postal-code': $('input[name="postal-code"]').attr('value'), 'question': $('textarea[name="question"]').attr('value'), 'form-type': $('input[name="form-type"]').attr('value')}, function(data) { _status = data.split(':')[0]; _label = data.split(':')[1]; _message = data.split(':')[2]; $('form input[type="submit"]').attr({'value': _label}); if (_status == '9') alert(_message); if (_status == '10') window.location = base + '/photo-gallery/gallery-index#search-results'; if (_status == '11') { setTimeout(function() { window.location = base + '/photo-gallery/logon#form'; }, 1000); } if (_status !== '1') { setTimeout(function() { $('form input, form textarea').attr({'disabled': false}); $('form input[type="submit"]').attr({'value': 'Send'}); }, 1000); } }); return false; }); $('form#gallery-index').submit(function() { _checkboxes = []; $('input[type="checkbox"]:checked').each(function() { _checkboxes.push($(this).attr('value')); }); $('#search-results').addClass('loading').html('Loading...').load('php/post.php', {'view': 'gallery', 'phrase': $('input[name="phrase"]').attr('value'), 'checkboxes': _checkboxes}, function(data) { $(this).removeClass('loading') _page = window.location + ''; window.location = _page.split('#')[0] + '#search-results'; }); return false; }); });