| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- jQuery(document).ready(function() {
-
- /*
- Fullscreen background
- */
- $.backstretch("assets/img/backgrounds/1.jpg");
-
- $('#top-navbar-1').on('shown.bs.collapse', function(){
- $.backstretch("resize");
- });
- $('#top-navbar-1').on('hidden.bs.collapse', function(){
- $.backstretch("resize");
- });
-
- /*
- Contact form
- */
- $('.contact-form form input[type="text"], .contact-form form textarea').on('focus', function() {
- $('.contact-form form input[type="text"], .contact-form form textarea').removeClass('input-error');
- });
- $('.contact-form form').submit(function(e) {
- e.preventDefault();
- $('.contact-form form input[type="text"], .contact-form form textarea').removeClass('input-error');
- var postdata = $('.contact-form form').serialize();
- $.ajax({
- type: 'POST',
- url: 'assets/contact.php',
- data: postdata,
- dataType: 'json',
- success: function(json) {
- if(json.emailMessage != '') {
- $('.contact-form form .contact-email').addClass('input-error');
- }
- if(json.subjectMessage != '') {
- $('.contact-form form .contact-subject').addClass('input-error');
- }
- if(json.messageMessage != '') {
- $('.contact-form form textarea').addClass('input-error');
- }
- if(json.emailMessage == '' && json.subjectMessage == '' && json.messageMessage == '') {
- $('.contact-form form').fadeOut('fast', function() {
- $('.contact-form').append('<p>Thanks for contacting us! We will get back to you very soon.</p>');
- // reload background
- $.backstretch("resize");
- });
- }
- }
- });
- });
-
-
- });
|