﻿function handleClick() {
    $(this).click(function (evt) { evt.preventDefault(); });
    return true;
}
$(function ($) {
    //Enable this to prevent double submits. Problem however, with interaction with Clientside validation that needs a solution.
    //$('.formAction').one('click', handleClick);

});

