Automatically Particular Div Part Refresh reload content HTML page or div after specific time Interval in php jquery ajax
Automatic specific Div loading feature is a very useful in many pages, fetch real time activities in mysql php
How to get real time data Automatically from mysql php in website after specific time Interval
javascript Refresh reload the Particular content in Div using php mysql jquery ajax
Automatic Refresh div tag without refresing the whole page in php mysql
How to Automatic refresh particular div tag and fetch content without reloading all page using php
Loading or Refreshing a div Content using php JQuery
How to Refresh DIV Content Without Reloading Page using php jQuery
First example
Step 1 : index.php page and load.php page build
<script type="text/javascript">
var auto_refresh = setInterval(
function ()
{
$('#load_div').load('load.php').fadeIn("slow"); },15000); // refresh every 10000 milliseconds
</script>
<div id="load_div">
</div>
2nd example
//<script type="text/javascript">
// var auto_refresh = setInterval( function() { $('#loadtweets').load('count_record.php').fadeIn("slow"); }, 15000);
// refreshing after every 15000 milliseconds 15 seconds
// </script>
<div id="loadtweets">
</div>