/ Published in: JavaScript
URL: dev.iamntz.com
Expand |
Embed | Plain Text
var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/; function modalBox(content, width, callback) { if(!content){ $('#ntz_modal').remove(); $('#ntz_overlay').fadeOut(function(){$(this).remove();}); try{if(IE6){$('body').find('select').visibility('visible');}}catch(err){}; return false; } try{if(IE6){$('body').find('select').visibility('hidden');}}catch(err){}; $('body').append('<div id="ntz_overlay"></div>'); $('#ntz_overlay').css({ width : '100%', height : $(document).height(), position : 'absolute', left : 0, top : 0, backgroundColor : '#FFFFFF', zIndex : 9990, opacity : 0 }).fadeTo(200, 0.5); $('body').append('<div id="ntz_modal"></div>'); $('#ntz_modal').css({ border : '1px solid #2d7abb', width : width ? width : 350, backgroundColor : '#FFFFFF', position : 'absolute', left : '50%', top : $(document).scrollTop(), zIndex : 9995, marginLeft: -(Math.ceil((width ? width : 800)/2)) }).append(content); try{ callback.call(); }catch(err){}; $(document).bind('scroll', function(){ $('#ntz_modal').css({ top:$(document).scrollTop() }); }); };
You need to login to post a comment.
