Trying to create a button that users click to take them to another website. Not quite sure how to do this. What I’ve tried so far doesn’t work.
Semantically correct way would be to use an <a>
tag.
But if you want to use <button>
, replace src="http://..."
with onclick="window.open('http://...')"
1 Like
Thank you! That works!
Is there anyway of changing that cursor from an arrow to a finger pointing, when dragged across the button?
cursor: pointer;
1 Like
Awesome! Thank you, so much!