Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- $(document).ready(function(){
- $("#btn_1").click(function() {
- $.post("${pageContext.request.contextPath}/LoginServlet",
- {
- jsonData:JSON.stringify({
- username:$("input#username").val(),
- password:$("input#password").val()
- })
- },
- function(data,status){
- alert("Data: " + data + "\nStatus: " + status);
- }
- );
- });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement