Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering if its possible to render the layout of an express application once using node.js and express. I want to have a stream playing on the layout page but I fear it will stop every time i want to render to the blocks I've declared.

share|improve this question
You can use Ajax for that (if you don't want to reload page and if I understood your question :) ) – karaxuna Feb 28 at 15:15
jQuery is nice library for javascript and it has nice mthods for ajax too, see this: api.jquery.com/jQuery.ajax – karaxuna Mar 1 at 20:06

1 Answer

up vote 0 down vote accepted

Simple ajax example:

$.get('url', function(response){
    $('#divToUpdateId').html(response);
});

Or this is the same:

$('#divToUpdateId').load('url');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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