I have following html:
$(function() {
$("#tabs").tabs();
});
<div id="tabs">
<ul>
<li><a href="content/intro.html">Introduction</a></li>
<li><a href="content/searching.html">Searching</a></li>
</ul>
</div>
The issue is that when clicking on a tab firebug (in Firefox 11) opens and halts script execution at line 181 of the jquery-ui-min.js javascript file. If I then press F8 (continue) content loads correctly and there is no error displayed. (No error also in IE8). How can I resolve this issue?