Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function() {
- $("#formInputProfil").validate({
- rules: {
- nik: {
- required: true, minlength: 10, number:true
- },
- nama: {
- required: true, minlength:5
- },
- jabatan: {
- required: true
- }
- },
- messages: {
- nik: {
- required:'NIK harus di isi', minlength:'NIK minimal 10 karakter', number:'NIK harus angka'
- },
- nama: {
- required:'Nama Lengkap harus di isi', minlength:'Nama Lengkap minimal 5 karakter'
- },
- jabatan: {
- required:'Jabatan harus di isi'
- }
- },
- submitHandler: function(form) {
- dataString = $("#formInputProfil").serialize(); // Ambil Value dari Form
- $.ajax({
- data: dataString,
- url: "<?php echo site_url('profile/updatedata'); ?>",
- type: "POST",
- success: function(data) {
- setTimeout(function() {
- swal({
- title:"Sukses",
- text: "Update Profil Berhasil",
- timer: 2000,
- showConfirmButton: false,
- type: "success"
- }, function() {
- window.location="<?php echo site_url('profile'); ?>";
- })
- });
- },
- error: function() {
- setTimeout(function() {
- swal({
- title:"Gagal",
- text: "Update Profil Berhasil",
- timer: 2000,
- showConfirmButton: false,
- type: "error"
- }, function() {
- window.location="<?php echo site_url('profile'); ?>";
- })
- });
- }
- });
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement