I would like to call my JsonResult after a pageload, not on a submit button. I have two BeginForm functions.
$("#loadTableForm").ready(function() {
    //$.post($(this).attr("action"), $(this).serialize(), function(response) {
});
<%using (Html.BeginForm()) {%>
   //data
   <%using (Html.BeginForm("LoadTable", "Home", FormMethod.Post, new { id = "loadTableForm" })) {%>
      //Table here should be loaded after page is loaded
   <% } %>
<% } %>