[jQuery] "Too much recursion" error with jQuery 1.2.6 and blockUI 2.07

[jQuery] "Too much recursion" error with jQuery 1.2.6 and blockUI 2.07


Something in the transition from jQuery 1.2.3 to 1.2.6 broke our
blockUI implementation.
Firebug spits out
///
too much recursion
[Break on this error] jQuery.globalEval(elem.text||
elem.textCo...Query.browser.msie)script.text=data;else
///
When we click on the button to close the block.
Here's the setup.
////
$(document).ready(function() {
$.blockUI({
message: 'You have unread messages.<br /><a href="/
usfportal/secure/general/myBannerMessages.jsp">Click here to read
them</a><br /><br /><button type="button" class="jqmClose"
value="Close This Notification">Close this notification</button>',
css: {
backgroundImage: 'url(https://<%=
request.getLocalName() %><%= request.getContextPath() %>/images/
alert.png)',
backgroundPosition: 'center top',
backgroundColor: '#FFF6BF',
border: '2px solid #FFD324',
backgroundRepeat: 'no-repeat',
padding:'35px 20px 20px 20px',
fontSize: '1.2em',
top: '30%',
fontWeight: 'bold'
}
});
$('.jqmClose').click($.unblockUI); // if they click
close, unblock the UI
});
/////
Not sure if I should file a bug report for jQuery....? Or if jQuery
meant to change something and blockUI just needs to update.