console.log($('#result-template').html()) の場合、次のようになります。
{{#each this}}
<tr>
<td>{{MfgName}}</td>
<td><button type="submit" name="MfgID" value="{{MfgID}}">Select</button></td>
</tr>
{{/each}}
しかし、私がするとき:
var template = Handlebars.compile('#result-template').html();
私は得る:
キャッチされていない TypeError: オブジェクト関数 (コンテキスト、オプション) { } にはメソッド 'html' がありません。