I wanted to know if there's a way to render a page in Node.js and then after 2 seconds redirect to another page. Something among the lines :
app.get('/thankyou',function(req,res){
res.render('thankyou' {message : 'Thank you for your submission'});
//after 2 seconds
res.redirect('nextpage');
});
via Rockasaurus
No comments:
Post a Comment