| Author: johan | Language: javascript |
| Description: Not specified | Timestamp: 2012-08-22 16:01:24 -0400 |
| View raw paste | Child paste by: Not specified | Reply |
- $(document).ready(function () {
- $("#submit").click(function () {
- var $moo = $("#form"),
- fooVal = $moo.find('input[name="name"]').val();
- $.post("http://localhost:8080/openjpa-sandbox/rest/test/post", { foo:fooVal },
- function () {
- alert("This doesn't come up...");
- }
- );
- });
- });
| View raw paste | Child paste by: Not specified | Reply |
