42868d70
andryeyev
Создал GIT
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$(document).ready(function() {
$('#input_city').click(function() {
$( ".city_box" ).show();
})
$( ".city_sel" ).click(function() {
if($( ".city_box" ).css('display')=='none')
$( ".city_box" ).show();
else
$( ".city_box" ).hide();
});
$( ".city_box ul li.name_city" ).click(function(){
$('#input_city').val($(this).text());
$( ".city_box" ).hide();
});
$( ".city_box ul li.other" ).click(function(){
$('#input_city').val('');
$( ".city_box" ).hide();
$('#input_city').focus();
});
});
|