JSFiddle - React, Tailwind, and code Playground
HTML
<!--<script type="text/javascript" src="http://static.ticketbiscuit.com/v1.0/js/ui.dialog.maximize.js"></script>-->
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/base/jquery-ui.css"></link>
<p>When you click the button, you should see "bind error" logged to your javascript console. This works in jQuery 1.4.4 - 1.5.2. In jQuery 1.6.0 - 1.6.2, the "bind error" doesn't work. Something is wrong with our custom override of jQuery's bind.</p>
<button id="btn1">I should show a message box</button>
<button id="btn2">Dialog</button>
JavaScript
$(document).ready(function() {
jQuery.getScript("http://c3380068.r68.cf0.rackcdn.com/TBCore.6.js", function() {
$(window).bind("x-error", function(e) {
console.debug("success: x-error", e);
});
$("#btn1").click(function() {
console.debug("click");
var i = this.throws.an.error;
});
$("#btn2").click(function() { $("<div>hi</div>").dialog(); });
});
});