JSFiddle - React, Tailwind, and code Playground
by johnhunter
HTML
<p>
<tt>click me</tt>
</p>
<script src="http://code.jquery.com/jquery-1.8rc1.js"></script>
<script>
/*
Reloading this page in IE7 causes the <tt> element to leak memory
*/
$(function () {
var $elem = $('<div/>');
$elem.bind('click', function(){});
$('tt').bind('click', function(){
alert('clicked');
});
});
</script>