user567879
user567879

Reputation: 5339

How to give link from button in twitter bootstrap

I have created a button using

<button type="button" class="btn btn-success btn-lg ">Register</button>

How could I give a link to another page when the button is pressed?

Upvotes: 1

Views: 1356

Answers (1)

Carol Skelly
Carol Skelly

Reputation: 362360

Use a anchor instead, and you can still style it as a button..

<a href="/page.html" class="btn btn-success btn-lg">Register</a>

Bootply: http://www.bootply.com/99320

Upvotes: 2

Related Questions