I want to auto refresh iframe loading php page but its refreshing whole page instead of refreshing iframe only.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Fouad Ali</title>
<script>
var links = "/proj/index.php";
var i = 0;
var renew = setInterval(function(){
document.getElementById("foo").src = links;
// alert("refreshed");
},5000);
</script>
</head>
<body>
<iframe id="foo" src="/proj/index.php"></iframe>
</body>
</html>