FORM PENDAFTARAN

.custom-space{ margin-bottom:15px; } .label-form{ width:100%; display:block; margin-bottom:5px; font-weight: bold; } .custom-select{ width: 100%; color: #666; border: 1px solid #ccc; height: 36px; } .tanggal{ width: 100%; color: #666; border: 1px solid #ccc; height: 36px; padding: 3px 6px; } /* The container */ .container { margin-right:25px; display: inline-block; position: relative; padding-left: 23px; cursor: pointer; font-size: 100%; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /* Hide the browser’s default radio button */ .container input { position: absolute; opacity: 0; cursor: pointer; } /* Create a custom radio button */ .checkmark { position: absolute; top: 2.5px; left: 0; height: 16px; width: 16px; background-color: #eee; border-radius: 50%; } /* On mouse-over, add a grey background color */ .container:hover input ~ .checkmark { background-color: #ccc; } /* When the radio button is checked, add a blue background */ .container input:checked ~ .checkmark { background-color: #2196F3; } /* Create the indicator (the dot/circle – hidden when not checked) */ .checkmark:after { content: “”; position: absolute; display: none; } /* Show the indicator (dot/circle) when checked */ .container input:checked ~ .checkmark:after { display: block; } /* Style the indicator (dot/circle) */ .container .checkmark:after { top: 4px; left: 4px; width: 8px; height: 8px; border-radius: 50%; background: white; }
Pilih Provinsi
Pilih Kota
Direct Sales Accounting Lain – Lain
Direct Sales Accounting Lain – Lain
Facebook Whatsapp Instagram Job Portal / Website Referensi Teman
$(document).ready(function(){ $(‘input:file’).change( function(e) { var files = e.originalEvent.target.files; for (var i=0, len=files.length; i 1024){ alert(“mohon untuk mengupload file CV dengan size dibawah 1mb !!”); $(‘input:file’).prop(‘value’, ”); } else if(type != “pdf” && type != “PDF”){ alert(“mohon untuk mengupload file CV dengan format PDF !!”); $(‘input:file’).prop(‘value’, ”); } } }); var htmlOptionProvinsi = ” Pilih Provinsi “; $.ajax({ type: ‘GET’, url: “https://open.cbnindo.com/api/provinsi”, cache: false, success: function(msg){ msg.forEach(function(item) { htmlOptionProvinsi += ” “+item[‘nama_provinsi’]+” “; }); $(“#provinsi”).html(htmlOptionProvinsi); } }); $(“#provinsi”).change(function(){ var provinsi = $(“#provinsi”).val(); var url = “https://open.cbnindo.com/api/kota/”+provinsi; $.ajax({ type: ‘GET’, url: url, cache: false, success: function(msg){ var htmlOption = “”; msg.forEach(function(item) { htmlOption += ” “+item[‘nama_kabupaten’]+” “; }); $(“#kota”).html(htmlOption); } }); }); });