fhdfhdfhdfhdfhdfhdfdfhdfhdfhdhfdfhdfhdfhd dfhdfhdfhdfhdfhdfhdfhdfdfhdfhdfhdhfdfhdfhdfhdfh
| DIR:/home/u1105814/www/tscore.id/style/ |
| Current File : /home/u1105814/www/tscore.id/style/footer.php |
<!-- Bootstrap core JavaScript-->
<script>
function showKab(str) {
var pil="prov";
//alert(str);
if (str=="") {
document.getElementById("kab").innerHTML="<option value=''>Pilih Kabupaten</option>";
document.getElementById("kec").innerHTML="<option value=''>Pilih Kecamatan</option>";
document.getElementById("kel").innerHTML="<option value=''>Pilih Kelurahan</option>";
return;
}
var xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function() {
if (this.readyState==4 && this.status==200) {
document.getElementById("kab").innerHTML=this.responseText;
document.getElementById("kec").innerHTML="<option value=''>Pilih Kecamatan</option>";
document.getElementById("kel").innerHTML="<option value=''>Pilih Kelurahan</option>";
}
}
xmlhttp.open("GET","p_get.php?q="+str+ "&pil="+pil,true);
xmlhttp.send();
}
function showKec(kec) {
var pil="kec";
//alert(kec);
if (kec=="") {
document.getElementById("kec").innerHTML="<option value=''>Pilih Kecamatan</option>";
document.getElementById("kel").innerHTML="<option value=''>Pilih Kelurahan</option>";
return;
}
var xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function() {
if (this.readyState==4 && this.status==200) {
document.getElementById("kec").innerHTML=this.responseText;
document.getElementById("kel").innerHTML="<option value=''>Pilih Kelurahan</option>";
}
}
xmlhttp.open("GET","p_get.php?q="+kec+ "&pil="+pil,true);
xmlhttp.send();
}
function showKel(kel) {
var pil="kel";
//alert(kel);
if (kel=="") {
document.getElementById("kel").innerHTML="<option value=''>Pilih Kelurahan</option>";
return;
}
var xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function() {
if (this.readyState==4 && this.status==200) {
document.getElementById("kel").innerHTML=this.responseText;
}
}
xmlhttp.open("GET","p_get.php?q="+kel+ "&pil="+pil,true);
xmlhttp.send();
}
</script>
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Core plugin JavaScript-->
<!-- <script src="vendor/jquery-easing/jquery.easing.min.js"></script> -->
<!-- Custom scripts for all pages-->
<script src="js/ramid.js"></script>
<!-- Page level plugins -->
<!-- <script src="vendor/chart.js/Chart.min.js"></script> -->
<!-- Page level custom scripts -->
<!-- <script src="js/demo/chart-area-demo.js"></script>
<script src="js/demo/chart-pie-demo.js"></script> -->
<script src="vendor/datatables/jquery.dataTables.min.js"></script>
<script src="vendor/datatables/dataTables.bootstrap4.min.js"></script>
<!-- Page level custom scripts -->
<script src="js/tabel-ramid.js"></script> |