JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<button class="btn btn-primary" id="botao">Botão</button>
<br/>
<a href="https://www.google.com.br/" class="btn btn-primary">Link</a>
JavaScript
$("#botao").click(function() {
$(window.document.location).href("https://www.google.com.br/");
});