Created
April 19, 2016 14:12
-
-
Save virbo/1b9e94a38c314a81d22cb3fd4fb0002f to your computer and use it in GitHub Desktop.
Tambahan coding di file view maps_view.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" src="<?php echo base_url('assets/js/jquery.min.js');?>"></script> | |
<script type="text/javascript" src="<?php echo base_url('assets/js/bootstrap.min.js');?>"></script> | |
<script type="text/javascript"> | |
var top_url = '<?php echo base_url();?>'; | |
function showModal(id) { | |
var temp_url = top_url+'welcome/modal/'+id | |
$('#mod_title').html('Daftar Alumni'); | |
$('#isi').html('<center><i class="fa fa-circle-o-notch fa-spin fa-fw"></i> Loading data, please wait...</center>'); | |
$('#isi').load(temp_url); | |
$('#myModal').modal(); | |
} | |
</script> | |
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> | |
<div class="modal-dialog modal-sm" role="document"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> | |
<h4 class="modal-title" id="mod_title"></h4> | |
</div> | |
<div class="modal-body"> | |
<div id="isi"></div> | |
</div> | |
<div class="modal-footer"> | |
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment