$("#lnkcolorbox").click(function() { $.fancybox.open({ href : 'colors.htm', width : 700, // set the width height : 610, fitToView : true, autoDimensions:false, autoSize:false, type : 'iframe', closeBtn : false, padding : 5, beforeShow : function(){ $('.fancybox-iframe').contents().find('#submitvalue').click(function(){ $('.fancybox-iframe').contents().find('form').submit(); $.fancybox.close(); }); }, beforeClose : function(){ x = $('.fancybox-iframe').contents().find('#namespace').val(); }, afterClose: function(){ $('#img-hue').val(x); } }); });