I know how to hyperlink but I am interested to create a link that links to 1 URL/Site and a download URL (doesn't have to open). I have been searching around and I still have not found any code. Anyone can help me?
Use this <a href="second_page.php" onclick="return download_me()">Click Me</a> <script> function download_me(){ window.top.location.href = 'download_me_please.php'; return false; } </script> HTML: