funcunit
Version:
<!-- @hide title
25 lines (21 loc) • 467 B
HTML
<html>
<body>
<div>
<iframe id="myframe" name="my frame" src="iframe.html"></iframe>
</div>
<script src="../../node_modules/steal/steal.js">
var $ = require("funcunit/browser/jquery");
$('div').click(function() {
var div = $(this),
iframe = $('<iframe/>');
iframe.attr({
id: 'myframe',
name: 'my frame',
src: 'iframe2.html'
});
div.html(iframe);
});
</script>
</body>
</html>