Why can't i capture this breakpoint (debugger) when using firefox's firebug
Posted
by ooo
on Stack Overflow
See other posts from Stack Overflow
or by ooo
Published on 2010-06-13T13:44:37Z
Indexed on
2010/06/13
13:52 UTC
Read the original article
Hit count: 183
I have this code below and as a test i have that alert below.
When i open firebug and i put a break point on the "debugger" and it doesn't fire but the alert does get called as a i get a alert popup.
Any idea why i can't capture this breakpoint ?
<script type="text/javascript">
$(function() {
$("#tabs").tabs({
selected: 0,
load: function(event, ui) {
debugger;
alert(ui.panel.id);
}
});
© Stack Overflow or respective owner