I'am loading html with some inline javascript on a $.post callback. Something "like that" :-)
callback{
response_data = '<p>string with html and </p><script "javascript">var scripts...</script>'
jQuery('#selector').html(response_data);
}
But when I do that, I can't see the new inline javascript loaded on Chrome's Scripts Tab. I see that JS on Network tab and js is executing but I can't debug this code.
Any idea about how to debug this code? Thanks!
Console tab, right click and select check XMLHTTPRequest