All pastes #357832 Raw Edit

Untitled

public text v1 · immutable
#357832 ·published 2007-02-15 22:55 UTC
rendered paste body
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
	$(function() {
		var f = frames["f"].document;
		f.open();
		f.write("<html><body></body></html>");
		f.close();
		$("<div>Testing</div>").appendTo(f.body);
	});
</script>
</head>
	<body>
		<iframe id='f' name='f'></iframe>
	</body>
</html>