mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-13 23:08:39 +10:00
14 lines
369 B
JavaScript
14 lines
369 B
JavaScript
$(document).ready(function(){
|
|
$('.edit-btn').click(function(){
|
|
$('.user-info').hide();
|
|
$('.edit-user').show('slow');
|
|
});
|
|
|
|
new Vcity.CitySelector({input:'city_to_choose'});
|
|
|
|
// $('.key-btn').click(function(){
|
|
// var key = $(this).attr('key_value');
|
|
// $(this).text(key);
|
|
// $('.key-btn').unbind('click');
|
|
// });
|
|
}); |