Michael Downing
Michael Downing

Reputation: 51

Make button a clickable link in bootstrap form?

I feel like I've exhausted every option from the standard a href approach on down the list. Nothing has worked so far. What is the correct way to treat a bootstrap button like a link?

Upvotes: 1

Views: 1737

Answers (2)

JGV
JGV

Reputation: 5187

here is a way to display link as a button (the other way around) https://jsfiddle.net/99x50s2s/42/

<a href="http://google.com" class="btn btn-success">Click here</a>

Upvotes: 0

Edgesoft
Edgesoft

Reputation: 282

<button type="button" class="btn btn-link">Link</button>

Upvotes: 2

Related Questions