i need to refresh data on page without page reload in nodejs. Below code refresh the page without page reload but .hbs file is not found error coming. How can i resolve it.
<script>
$(document).ready(function(){
$("#contenUpdate").load("abc.hbs");
var refreshId =
setInterval(function(){
$("#contentUpdate").load("abc.hbs");
}, 1000);
$.ajaxSetup({cach:false});
})
//abc.hbs enter image description here