Many times I've faced this problem when a code will generate exception( eg. method not defined in object) it will not show up in the Firefox console. Firefox will simply skip that part of code.
After unable to figure the problem out, I'd need to use Chrome console to see the exception. Or I can wrap code in try-catch
to see exception when run in Firefox console
Any solution so that Firefox only will show the exception code without wrapping the code within try-catch
where it is happening?