// /* attach a submit handler to the form */ // $("#quotation-form").change(function(event) { // var $form = $( this ), // endPoint = $form.attr( 'action' ) + 'calculatePrice'; // var posting = $.ajax({ // type: "POST", // url: endPoint, // crossDomain: true, // data: $('form[name="quotation-form"]').serialize(), // error: function(result) { // console.log(result) // $("#price").text(result); // } // }); // posting.done(function( result ) { // console.log(result) // if(isNaN(result)) { // $("#price").text(result); // } else { // $("#price").text("€" + result.toLocaleString() ); // $("input[type=hidden][name=estimated_price]").val(result); // } // }); // }); // $("#quotation-form").submit(function(event) { // event.preventDefault(); // var $form = $( this ), // endPoint = $form.attr( 'action' ) + 'requestQuotation'; // var posting = $.ajax({ // type: "POST", // url: endPoint, // crossDomain: true, // data: $('form[name="quotation-form"]').serialize(), // error: function(result) { // console.log(result) // //Some popup or something. // } // }); // posting.done(function( result ) { // $form.hide(); // $('.thanks').show(); // console.log(result) // }); // });