Reputation: 1226
Any reason why this wouldn't work?
<button class="btn btn-primary btn-lg" onClick="location.href='http://anothersitehere.com/file.pdf'">Download PDF</button>
Upvotes: 3
Views: 33020
Reputation: 21
Leaving location.href
blank and in javascript function give
document.location.href='page.php?variable='+value;
it will redirect to the page you want.
Upvotes: 2
Reputation: 1072
You would try with this instead
<a class="btn btn-primary btn-lg" href="http://anothersitehere.com/file.pdf">
Download PDF
</a>
Upvotes: 8
Reputation: 260
It's seems that it is working regarding on going to the link. I'm using Chrome btw.
Upvotes: 0