Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
    <form>
        <label>Valor:
            <input type="text" name="valor">
        </label>
        <label>Meses:
            <input type="text" name="meses">
        </label>
        <label>Taxa:
            <input type="text" name="taxa">
        </label>
    </form>
    <a href="detalhado.html" class='btn'>Detalhado</a>
</body>
</html>
 
$('.btn').on('click', function(e) {
  e.preventDefault(); // Interrompe o browser de seguir para o href do botão
  var href = $(this).attr('href'); // Armazena o valor do atributo href do botão que foi clicado
  // Concatena os valores do form ao href e redireciona para a nova url
  //window.location.href = href + '?' + $('form').serialize();
  // Utilizando alert para demonstração
  alert(href + '?' + $('form').serialize());
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers