All pastes #2093392 Raw Edit

Anonymous

public html v1 · immutable
#2093392 ·published 2011-11-09 17:21 UTC
rendered paste body
<!DOCTYPE html><html><head>  <title>DEMO</title>  <script src="urlToJQuery"></script>  <script>    $(document).ready(function() {      $("#sumbit-button").click(function(){        var name = $("#name").val();        var age = $("#age").val();        //Validate if needed        $.post("example.php", { name: name, age: age }, function(data) {          $("#results.pane").html(data).show("slow");        }, "html");      });    });  </script>  <style type="text/css">    #results-pane {      display: none;    }  </style>  </head>  <body>    <form>      <input type="text" id="name" />       <input type="text" id="age" />      <input type="button" id="submit-button" />    </form>    <div id="results-pane"></div>  </body></html>