$('.switch_city').bind('click',function(e){ var pos = $(this).parent().offset(); var hx = $(this).parent().outerHeight(); $('#more_city').css({'position':'absolute','top':(pos.top + hx) + 'px', 'left':pos.left+'px'}).show(); e.stopPropagation(); $(document).bind('click.popcity',function(){ $('#more_city').hide(); $(document).unbind('click.popcity'); }); });