i want to refresh multiple div value without refreshing the whole page using one function.
<div class="live_update" id="a">33</div > <div class="live_update" id="b">34</div > <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script>
function autoRefresh_div()
{
$('.live_update').load('Dashboard.php' + ' .live_update');
}
setInterval('autoRefresh_div()', 1000);
</script>