I want to open a success page in a new tab after clicking on the download link, but target _blank not working with download attribute. Please Help Me......
Button HTML
<a class="btn download-btn" id="myButton" href="https://www.uiuxstream.com/download/404-error-page-not-found-design-html.html" target="_blank" download>Download</a>
JavaScript
<script type="text/javascript">
document.getElementById("myButton").onclick = function () {
location.href = "/demo/thank-you-for-downloading.php";
};
targetattribute only affects thea. Trying changinglocation.href. (Also there is no PHP relation here, no jquery. Please only tag relevant languages) - user3783243downloadattribute is serving in your code - Anurag Srivastava