Description : in this post how to call function after complete page load in aspx, html, cshtml page just add below code in script
Write below code and add your function in setInterval
<script>
document.addEventListener("DOMContentLoaded", function () {
setInterval(calculateTotalFees(), 0);
}, false);
</script>
Write below code and add your function in setInterval
<script>
document.addEventListener("DOMContentLoaded", function () {
setInterval(calculateTotalFees(), 0);
}, false);
</script>