jQuery ColorBox confirm override modal dialog?
How would开发者_JAVA百科 I use ColorBox to create a 'confirm override' modal dialog that can interupt a form submission until 'yes' is clicked.
Simple Modal has a similar function, but I much prefer colorbox's implementation and documentation, otherwise I'd use the latter.
You can use overlayClose property to false to make disable closing when you click outside the colorbox div and by setting closebutton property to false will hide close button . That is how you can make colorbox div as modal.
code : $.colorbox({overlayClose:false,closebutton:false});
I can't help you with ColorBox, but if you have a specific question or issue with SimpleModal, I'd be happy to help.
精彩评论