window.onload = function(){ getFooter(); footerinfoId(); getPricingLoginPath(); } function footerinfoId() { $.post("footerinfo.jsp", function(response){ $("#footerinfoId").html(response); }) } function getFooter() { $.post("footer.jsp", function(response){ $("#footerId").html(response); }) } function getPricingLoginPath() { $.post("pricingLoginPath.jsp", function(response){ $("#pricingLoginPath").html(response); }) }