JQuery: Recarregando uma página rapidamente

    Obrigado! você é a 1.005ª pessoa que visita este post.

    location.reload()

    <html>
    <head>
       <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
       <script type="text/javascript">
          $(document).ready(function() {
                $(':button').click(function() {
                    location.reload();
                });
          });       
       </script>
    </head>
    <body>
       <input type="button" value="Atualizar" />
    </body>
    </html>

    Related posts:

    1. JQuery: Alterando o texto e o atributo title de um button
    2. JQuery: Efeito de Apagar a Luz
    3. JQuery: Desabilitando um campo do tipo texto (input)
    4. JQuery: Hello World!
    5. JQuery: Habilitando um campo do tipo texto (input)