Sha256: 59aa23e110dbf46fffd11322baca0f08bf3b6b9ab2381f92748cd2145cb6e4d2
Contents?: true
Size: 561 Bytes
Versions: 14
Compression:
Stored size: 561 Bytes
Contents
<%# frozen_string_literal: true %> <html> <head> <title>This is the child frame title</title> <script> function closeWin() { var iframe = window.parent.document.getElementById('childFrame') iframe.parentNode.removeChild(iframe) } </script> </head> <body id="childBody"> <a href="javascript:void(0)" onClick="closeWin()">Close Window</a> <iframe src="/frame_one" id="grandchildFrame1"></iframe> <iframe src="/frame_two" id="grandchildFrame2"></iframe> </body> </html>
Version data entries
14 entries across 14 versions & 3 rubygems