In a single page application, I load a different html page with jquery.
$('#lodger').click(function () {
$('#main').load('lodger.html');
});
In my page lodger.html, I have some javascript directly in the page.
Is there a way to debug it? I haven't found a way to do it with Chrome
