I have Page1.aspx page which has Page2.aspx page embedded in it inside a div element. Now I am unable to hit debugger in the JavaScript included in Page2.aspx
below has the code snippet for understanding. Page1.aspx
<div id="SomeDiv" style="background-color: white;"></div>
Page1.js //Code to load the new page within a div tag
$("#" + 'SomeDiv').load(Page2.aspx, {}, function () {//... });
Now Page2.Aspx
has JavaScript page Page2.js
I am unable to hit debugger on Page2.js. Is there any solution to do that.
I tried F12 but unable to see Page2 in debugger.
I have only IE explorer. Thank you.