backbone.js - Backbone JST template update without rendering again -
i'm looking update template data without rendering template again since need change number
<div class="l-col l-col-left float-l results-text">showing {{= data.showingnow }} out of {{= data.numofresults }} results </div>
this code part of template , update "data.showingnow" without rendering template again since small part need's update
can done?
you can use :
$('.results-text').html(/* new html here */)
Comments
Post a Comment