On Tuesday, February 12, 2013 5:21:17 AM UTC+7, s thapa wrote:
>
> I am thinking of creating a refresh button because auto reload of webpage 
> might froze webpage until data is extracted from server to client and this 
> my annoy users.
>
> Any suggestion or sample code are welcome. 
>
>
 
In *routes/index.js*

var getData = require('../data.js');
exports.index = function(req, res){
  getData(function(data) {
    res.writeHead(200, { 
       "Content-Type": "text/plain",
       "Content-Length": data.length
});
    res.end(data, 'utf-8');
  }
};

In browser:

$("#refresh-button").on("click", function() {
    $("#some-element").load("/some/url"); 
}

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to nodejs+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to