I am using firebug since about 6 months and have a good understanding how
it should work.
For the first time, I am getting a confusing behaviour while debugging, the
underlying method don't seem to stop at break point, yet the application is
working.
Something as simple as this, a div is filled with a html page per jquery
load, thereafter the cancel button of the incoming html gets subscribed and
upon click the div will get emptied.
It all works. But having break point on cancel_new_conversation() doesn't
do anything. Not sure, if I have done something in my firebug
settings...doesn't feel right, not sure what to do...
$('#new_conversation_div').load(url, function(){
$('#new_conversation_cancel_button').click(cancel_new_conversation);
});
function cancel_new_conversation(event){
event.preventDefault();
$('#new_conversation_div').empty();
}
--
You received this message because you are subscribed to the Google
Groups "Firebug" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
https://groups.google.com/forum/#!forum/firebug