In colorbox, you are able to fire events such as warning messages or other actions when the 'close' event is fired. For example:
var originalClose = $.colorbox.close;
$.colorbox.close = function(){
var response;
response = confirm(Are you sure you want to close this window?');
if(!response){
return;
}
originalClose();
};
The only problem with this code however, is that it applies to ANY colorbox window that is opened. I have tried using jquery selectors ($("#elementID") or $(".colorboxWindow")) but it seems the .colorbox.close event overrides/ignores any selectors.