I have this jsp page that includes the following frames:
<frameset cols="20%,*">
<frame src=”SideBar.jsp” name="frameA">
<frame src=”http://www.w3schools.com/” name="frameB" target="_self">
</frameset>
In frameB,it's an external link, the user can navigate that webpage and click on links and do stuff. Is there a way when the user clicks on a link, to get the url of that new webpage? e.g. http://www.w3schools.com/html/default.asp
Thanks in advance