var App_Form_Contact = qs.createObject(); App_Form_Contact.prototype = { options: null, from: null, initialize: function(options) { this.options = options; this.initPopup() }, initPopup:function () { $('.contact-popup').fancybox({ fitToView : true, type : 'inline', width : 'auto', //minWidth : '460', //maxWidth : '460', height : 'auto', autoSize : true, autoWidth : true, closeClick : false, closeBtn : true, openEffect : 'fade', closeEffect : 'fade', padding : 20 }); }, onSuccessCallback: function () { $('.fancybox-inner #form_contact-form').parent().hide(); $('.fancybox-inner #contact-form-thanks').show(); } };