Is it possible to use JavaScript inside handlebars.js template
- by Gleeb
The description says it all.
How to put a JavaScript script inside handlebars template.
I want to make a dynamic Paypal button for my website.
<script type="text/x-mustache-template" id="product-item-thumbnail-template">
<h2>{{title}}</h2>
<p>{{message}}</p>
<p><a class="btn" href="#">View details »</a></p>
<p><script src="resources/js-frameworks/[email protected]"
data-button="buynow"
data-name="My product"
data-amount="1.00"></script></p>
</script>
But this produces an error because of the tag. it closes the template script and not the paypal script
Thanks