CARI PROPERTI / JASA
function searchProperties() {
var lokasi = document.getElementById("lokasi").value;
var tipe = document.getElementById("tipe").value;
var status = document.getElementById("status").value;
var jasa = document.getElementById("Jasa").value;
var labels = [];
if(lokasi) labels.push(lokasi);
if(tipe) labels.push(tipe);
if(status) labels.push(status);
if(jasa) labels.push(jasa);
if(labels.length > 0){
var searchURL = "/search/label/" + labels.map(encodeURIComponent).join("+");
window.location.href = searchURL;
} else {
alert("Pilih minimal satu kategori sebelum mencari!");
}
}