Hi,
I add a new tab next way:
$(‘#jqxTabs’).jqxTabs({
width: 725,
height: 200,
reorder:true
});
$(‘#jqxTabs’).jqxTabs(‘addAt’, 0, ‘<div id=”tabTitleContent”>Some text</div>’, ‘Some content’);
then I do the following:
$(‘#tabTitleContent’).bind(‘click’, function() {
alert(‘click’);
});
everything works fine, until I drag this tab -> click doesn’t fire anymore, and the worst thing is that the only possible event ‘dragEnd’ fires before the title content was modified in _reorderItems (jqxtabs.js) function -> so there is no way to bind ‘click’ event again 
Thank you,
Artsem