I have an "example.jsp",
example.jsp:
<html>
<body>
<iframe id="firstframe" src="abc.jsp"></iframe>
</body>
</html>
abc.jsp:
<html>
<body>
<div id="modal" src="list.jsp"></div>
<input type="button" id="listBtn"/>
<script>
$("#listBtn").click(function() {
$("#modal").dialog({
autoOpen: false,
modal: true,
width: 500,
height: 500,
title:'test',
});
$("#modalLookup").dialog("open");
});
});
</script>
</body>
</html>
So currently when I click on the button in the iframe the modal window is up and my abc.jsp is getting blurred. But I want my example.jsp to also get blurred.