I have these 3 following <a> tags that point to different hrefs. 1 and 2 work fine and open https://example.com and http://example.com in a new tab, but the 3rd one open the same URL as the one I'm currently on and just appends example.com to the end
Why is this happening?
<a href="https://example.com" target="_blank">Open</a>
<a href="http://example.com" target="_blank">Open</a>
<a href="example.com" target="_blank">Open</a>