Access a variable outside the scope of a Handlebars.js each loop

Try

<option value="{{id}}">{{title}} {{../externalValue}}</option>

The ../ path segment references the parent template scope that should be what you want.

Leave a Comment