Trip Suggestions
@@ -306,6 +353,94 @@
Thailand
window.addEventListener('resize', updateCarousel);
document.addEventListener('DOMContentLoaded', updateCarousel);
+
+
+
+
+ // Autocomplete functionality
+ function autocomplete(inp, arr) {
+ var currentFocus;
+ inp.addEventListener("input", function(e) {
+ var a, b, i, val = this.value;
+ closeAllLists();
+ if (!val) { return false; }
+ currentFocus = -1;
+ a = document.createElement("DIV");
+ a.setAttribute("id", this.id + "autocomplete-list");
+ a.setAttribute("class", "autocomplete-items");
+ this.parentNode.appendChild(a);
+ for (i = 0; i < arr.length; i++) {
+ if (arr[i].substr(0, val.length).toUpperCase() == val.toUpperCase()) {
+ b = document.createElement("DIV");
+ b.innerHTML = "" + arr[i].substr(0, val.length) + "";
+ b.innerHTML += arr[i].substr(val.length);
+ b.innerHTML += "";
+ b.addEventListener("click", function(e) {
+ inp.value = this.getElementsByTagName("input")[0].value;
+ closeAllLists();
+ });
+ a.appendChild(b);
+ }
+ }
+ });
+ inp.addEventListener("keydown", function(e) {
+ var x = document.getElementById(this.id + "autocomplete-list");
+ if (x) x = x.getElementsByTagName("div");
+ if (e.keyCode == 40) {
+ currentFocus++;
+ addActive(x);
+ } else if (e.keyCode == 38) {
+ currentFocus--;
+ addActive(x);
+ } else if (e.keyCode == 13) {
+ e.preventDefault();
+ if (currentFocus > -1) {
+ if (x) x[currentFocus].click();
+ }
+ }
+ });
+ function addActive(x) {
+ if (!x) return false;
+ removeActive(x);
+ if (currentFocus >= x.length) currentFocus = 0;
+ if (currentFocus < 0) currentFocus = (x.length - 1);
+ x[currentFocus].classList.add("autocomplete-active");
+ }
+ function removeActive(x) {
+ for (var i = 0; i < x.length; i++) {
+ x[i].classList.remove("autocomplete-active");
+ }
+ }
+ function closeAllLists(elmnt) {
+ var x = document.getElementsByClassName("autocomplete-items");
+ for (var i = 0; i < x.length; i++) {
+ if (elmnt != x[i] && elmnt != inp) {
+ x[i].parentNode.removeChild(x[i]);
+ }
+ }
+ }
+ document.addEventListener("click", function (e) {
+ closeAllLists(e.target);
+ });
+ }
+
+ var destinations = [
+ "Agra", "Amritsar", "Andaman Islands", "Bangalore", "Chennai", "Darjeeling",
+ "Delhi", "Goa", "Hampi", "Hyderabad", "Jaipur", "Jaisalmer", "Kochi",
+ "Kolkata", "Leh", "Mumbai", "Munnar", "Mysore", "Ooty", "Pondicherry",
+ "Pushkar", "Ranthambore", "Rishikesh", "Shimla", "Udaipur", "Varanasi",
+ "Aizawl", "Alleppey", "Alwar", "Badrinath", "Bhubaneswar", "Bikaner",
+ "Chandigarh", "Chikmagalur", "Coorg", "Daman and Diu", "Dharamshala",
+ "Gangtok", "Gulmarg", "Haridwar", "Imphal", "Jabalpur", "Jodhpur",
+ "Kanha National Park", "Kanyakumari", "Kaziranga National Park", "Khajuraho",
+ "Kodaikanal", "Konark", "Kovalam", "Lakshadweep", "Lonavala", "Mahabalipuram",
+ "Manali", "Mount Abu", "Munnar", "Nagaland", "Nainital", "Nashik",
+ "Pahalgam", "Patna", "Ranchi", "Shillong", "Srinagar", "Surat", "Tawang",
+ "Tirupati", "Trivandrum", "Ujjain", "Vadodara", "Varkala", "Vijayawada",
+ "Ziro Valley", "Zanskar Valley"
+];
+
+ autocomplete(document.getElementById("destination"), destinations);