﻿
$(function () {
    $(".submit").click(function (e) {
        e.preventDefault();
        $(this).parents("form").submit();
    });
});

