vote up 2 vote down star

I am trying to create a commenting system whereby admins are able to moderate comments and users are able to post comments all in the one page load. I have all the backend knowledge on how to delete the comments, but I really have to know how the new comments could be loaded from the database and shown on the current page.

Edit: More specifically what would the actual javascript look like that would render the new replies?

flag

2 Answers

vote up 4 vote down check

You'll want a periodic AJAX call to poll the server for new comments.

You should have a datetime of the latest answer the browser knows and the question ID to query the server, to optimize your traffic.

Using JQuery:

var refreshId = setInterval(function() {
     $.getJSON("http://server.com/form?question=" + questionId + "?time=" + datetimeStamp",
        function(data){
          $.each(data.items, function(i,item){
            $("#comments").append( // new div with content)
          });
        });

}, 3000);
link|flag
I prefer the JSON functions, but you can use the regular AJAX get as well. – Nerdling Feb 27 at 15:29
Any way to do it without JQuery? – Sam152 Mar 5 at 4:47
Yes, you can manually write all your AJAX calls, do getElementByIds and loop through everything … it's just way easier with JQuery. – Nerdling Mar 5 at 5:27
vote up 0 vote down

Or you could avoid polling and make the server push the data down to the client. This is how GTalk or Meebo works by pushing new messages. Comet (pushing or streaming data) support is built-in with some JavaScript frameworks like Dojo or a jQuery plugin.

See http://ajaxian.com/archives/comet-a-new-approach-to-ajax-applications http://plugins.jquery.com/project/Comet

link|flag
Anything native to javascript? – Sam152 Mar 1 at 3:18
I fail to see the non-native part. There's no additional requirements beside javascript on the client, and the server is basically left untouched. – Cesar Mar 5 at 17:07
I meant framework independent, but you're right. – Sam152 Aug 20 at 13:07

Your Answer

Get an OpenID
or

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