$(document).ready(function() { 

// malsup.com/jquery/form/#code-samples
    var options = { 
        target:     '#enovice .return',   // target element(s) to be updated with server response 
        type:      'post',
        url:       '/include/ajax/ajax.prijava_enovice.php'
    }; 
 
    // bind to the form's submit event 
    $('#newsletter_prijava').submit(function() { 
        $(this).ajaxSubmit(options); 
        return false; 
    }); 
     
 });
