24 lines
585 B
HTML
24 lines
585 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery Migrate old-jQuery initialization test</title>
|
|
|
|
<!-- Load older jQuery, then jquery-migrate plugin file based on URL -->
|
|
<script src="jquery-2.2.3.js"></script>
|
|
<script src="iframeTest.js"></script>
|
|
<script src="testinit.js"></script>
|
|
<script>
|
|
jQuery.noConflict();
|
|
TestManager.loadProject( "jquery-migrate", "dev", true );
|
|
</script>
|
|
<script>
|
|
// Should have logged during initialization
|
|
startIframeTest();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>jQuery Migrate old-jQuery initialization test</p>
|
|
</body>
|
|
</html>
|