Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a custom control kept inside a div that changes its contents only on refresh, so I am thinking to use something that can refresh only the div.I am trying to do face book wall like concept.

share|improve this question
this may help you stackoverflow.com/questions/5296815/… – NullPoiиteя Sep 22 '12 at 6:00

closed as not a real question by Michael Petrotta, Aziz Shaikh, Flavius, bažmegakapa, Jack Sep 24 '12 at 8:17

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

try like this

<html>
<head>
<!-- For ease i'm just using a JQuery version hosted by JQuery- you can download any version and link to it locally -->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function() {
 $("#responsecontainer").load("response.php");
  var refreshId = setInterval(function() {
  $("#responsecontainer").load('response.php?randval='+ Math.random());
 }, 9000);
 $.ajaxSetup({ cache: false });
});
</script>
</head>
<body>

<div id="responsecontainer">
</div>
</body>
</html>
share|improve this answer

You can use setInterval to continuosly perform an action. clear it with clearInterval(intv);

var intv = setInterval(function(){
 //do stuff here every 5 seconds
}, 5000);

setTimeout(function(){
  clearInterval(intv);
}, 30000);

Above will do something ever 5 seconds, then cancel the polling after 30 seconds.

share|improve this answer
thanks for your reply @chovy , but my page i dieing. – Manoj Sep 22 '12 at 8:17
what is the error you are getting? can you paste a jsfiddle? – chovy Sep 22 '12 at 8:23
got it chovy !solution is to do a database connection with pooling, and that's how face book ticker is working.Suggestions on that please...do you know any scripts like that floating around. – Manoj Sep 24 '12 at 4:53

Not the answer you're looking for? Browse other questions tagged or ask your own question.