mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-09 12:56:14 +10:00
14 lines
359 B
JavaScript
14 lines
359 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');
|
|
});
|
|
}); |