View file Web Template Ktpl/package/templates/ktpl/js/fields/city.js

File size: 259B
$(function(){
    $('#location_group').on('input', function (){
        v = $(this).val();
        if(v){
            $('#output_string').parent().show();
        } else {
            $('#output_string').parent().hide();
        }
    }).trigger('input');
});