You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
582 B
JavaScript
15 lines
582 B
JavaScript
// for City Tour List
|
|
// city tour search
|
|
$(function(){
|
|
$(".hotelsearchtitle .citySelect a").click(function(){ $("#hotelcityList").show(); });
|
|
$("#hotelcityList .closeIt").click(function(){ $("#hotelcityList").hide(); });
|
|
$("#hotelcityList ul li").click(function(){
|
|
$(".hotelsearchtitle .citySelect a").text("");
|
|
$("#s_city").val("");
|
|
$("#s_city").val($(this).text());
|
|
$(".hotelsearchtitle .citySelect a").text($(this).text());
|
|
$("#hotelcityList").hide();
|
|
});
|
|
});
|
|
|
|
|