How do I download the pdf file on click which has the following syntax
<a href = "http://www.pdf995.com/samples/pdf.pdf" download >Click to download!</a>
And the pdf is associated with a model within the <li>
item like this
<script type="text/x-handlebars" data-template-name="index">
<ul>
{{#each item in model}}
<li {{action action1}}>{{item}}
<a href = "http://www.pdf995.com/samples/pdf.pdf" download >Click to download!</a>
</li>
{{/each}}
</ul>
</script>
Where as if I place the tag outside the li it works fine and the pdf is downloaded. How do I make it work inside the <li>
tag which has an action.
Seems like the action is called first always!