Avatar of hankknight
hankknight
Flag for Canada

asked on 

Alert entire contents of iframe

How can I alert the entire contents of my iframe?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Trans</title>
<script type="text/javascript">
 
function trans () {
	var trans = window.frames['trans'];
	if (trans)  {
	var result = trans.document.innerHTML;
	alert(result);
	}
}
 
</script>
</head>
<body>
<div>
 
<iframe src="stuff.php" name="trans" id="trans" width="98%" height="200"></iframe>
 
<a href="#" onclick="trans();return false">Trans</a>
 
</div>
</body>
</html>

Open in new window

JavaScript

Avatar of undefined
Last Comment
Tomarse111

8/22/2022 - Mon