View Ticket
Not logged in
Ticket UUID: 177e6fbcbd2ff3c01294868037058dd18afd707a
Title: When using iframe in IE11 the text is not displayed from target frame
Status: Open Type: Code_Defect
Severity: Cosmetic Priority:
Subsystem: Resolution:
Last Modified: 2021-10-06 19:43:06
Version Found In:
User Comments:
anonymous added on 2021-10-06 19:43:06: (text/x-markdown)
As an example the main window will not display data from other target sources:
Following is index.htm

<!DOCTYPE html>
<html>
<body>
<h2>CrowdStrike Project Updates</h2>
<iframe src="servers.htm" height="200" width="300" title="Servers"></iframe>
<iframe src="workstations.htm" height="200" width="300" title="Workstations"></iframe>
<iframe src="mobile.htm" height="200" width="300" title="Mobile"></iframe>
</body>
</html>

Eg: servers.htm
<!DOCTYPE html>
<html>
<body>
<h2>Server Schedule</h2>
</html>