Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function uploadlimapuluh(id) {
- $('#form_upload_lima_puluh')[0].reset();
- $.ajax({
- url : "<?php echo site_url('fasilitator/pelaksanaan/check_foto_lima/'); ?>"+id,
- type: "GET",
- dataType: "JSON",
- success: function(data) {
- $('#rtlh_id').val(data.rtlh_id); // ID Rtlh
- $path = '<?php echo base_url(); ?>img/';
- // Perulangan untuk menampilkan Gambar
- $('#formLimaPuluh').modal('show');
- },
- error: function (jqXHR, textStatus, errorThrown) {
- alert('Error get data from ajax');
- }
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement