Comment soumettre le formulaire sur une URL modifiée dans la fonction dans jQuery

$(".move_to").on("click", function(e){
    e.preventDefault();
    $('#contactsForm').attr('action', "/test1").submit();
});
Fierce Flamingo