mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-12 13:32:16 +09:00
korean zip search UX enhancement.
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8174 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
7b28c68c80
commit
1d31fbb49e
13 changed files with 661 additions and 625 deletions
|
|
@ -56,4 +56,29 @@ function completeSearchKrZip(ret_obj, response_tags, callback_args) {
|
|||
$j('#zone_address_search_'+column_name).hide();
|
||||
$j('#zone_address_1_'+column_name).hide();
|
||||
$j('#fo_insert_member select[name=_tmp_address_list_'+column_name+']').html(address_list.join('')).get(0).selectedIndex = 0;
|
||||
}
|
||||
}
|
||||
|
||||
jQuery(function($){
|
||||
// Input Clear
|
||||
var iText = $('.item>.iLabel').next('.iText');
|
||||
$('.item>.iLabel').css('position','absolute');
|
||||
iText
|
||||
.focus(function(){
|
||||
$(this).prev('.iLabel').css('visibility','hidden');
|
||||
})
|
||||
.blur(function(){
|
||||
if($(this).val() == ''){
|
||||
$(this).prev('.iLabel').css('visibility','visible');
|
||||
} else {
|
||||
$(this).prev('.iLabel').css('visibility','hidden');
|
||||
}
|
||||
})
|
||||
.change(function(){
|
||||
if($(this).val() == ''){
|
||||
$(this).prev('.iLabel').css('visibility','visible');
|
||||
} else {
|
||||
$(this).prev('.iLabel').css('visibility','hidden');
|
||||
}
|
||||
})
|
||||
.blur();
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue