Reputation: 69
Here is the problem, so I'm trying to deploy my website on Github Pages. It works, until I try to click my button which is when it got clicked will redirect to wa.me. It does redirect to wa.me when I try it in localhost, but it didn't work on my Github Pages. It came out looks like this
Here is the code:
<button class="btn btn-outline"
type="button"
onclick="window.open('https:wa.me/085155448143?text=Halo%20saya%20ingin%20mengetahui%20info%20lebih%20lanjut%20tentang%20kursus%20di%20Auto%20Mitsuda', '_blank')">
Chat Kami
</button>
Upvotes: 0
Views: 904
Reputation: 848
You are missing //
in your href.
should be onclick="window.open('https://wa.me/085155448143?text=Halo%20saya%20ingin%20mengetahui%20info%20lebih%20lanjut%20tentang%20kursus%20di%20Auto%20Mitsuda', '_blank')">
`
Upvotes: 1