Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script language="javascript">
- function CekLogin(){
- $(document).ready(function(){
- $("#login").submit( function (){
- $.ajax({
- type: "POST",
- url : 'http://www.berthojoris.com/dev/jqm/login_cek.php',
- data: {
- username:$('#username').val(),
- password:$('#password').val(),
- },
- dataType: "json",
- success: function (data) {
- if (data.response=='SuksesLogin') {
- jAlert('Login Successfully', 'Success');
- } else {
- jAlert('Login Failed', 'Failed');
- }
- }
- });
- });
- });
- }
- </script>
Advertisement
Add Comment
Please, Sign In to add comment