Hi, We are using blockUI 2.14 with the timeout option like this:
var timeout = 120000; $.blockUI({ message: null, timeout: timeout }); At a later point of time we can explicitly unblock by calling: $.unblockUI(); Unfortunately it seems that subsequent blocks can be unblocked by the original timeout (unblock is *always* called 2 minutes after our calls to block, regardless of us having called unblock ourselves in the meantime) Is there an issue with the code to cancelTimeout in the unblockUI function? Thanks, Nick.