$(function(){ $('.dialog-popup').each(function(index) { //alert('#' + $(this).attr('id') + '-contnet'); $('#' + $(this).attr('id') + '-content').dialog({ autoOpen: false, width: "auto", }); $('#' + $(this).attr('id')).click(function(){ $('#' + $(this).attr('id') + '-content').dialog('open'); return false; }); }); });