// modal_popup $('.btn-device').click(function(){ var $device = $(this).data('id'); layer_popup($device); }); function layer_popup(el){ $('#' + el).fadeIn(); $('#' + el).find('a.layer-exit').click(function(){ $('#' + el).fadeOut(); return false; }); }