events.js 664 Bytes
$(function() {
    var clicked = null;

    $(document)
        .on('click', '.modal-link', function() {
            clicked = $(this)
                .data('event');
        });

    $(document)
        .on('submit', '.section-forms #contact-form', function(e) {
            console.log('Form from page');
        });

    $(document)
        .on('submit', '#callback #contact-form', function(e) {
            console.log('Call me maby');
            console.log(clicked);
        });

    $(document)
        .on('submit', '#buy-form #contact-form', function(e) {
            console.log('Hello from buy form');
            console.log(clicked);
        });

});