UNPKG

jquery-migrate

Version:

Migrate older jQuery code to jQuery 3.0+

41 lines (34 loc) 947 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>jQuery Migrate test for event.props.concat() compat</title> <!-- Load a jQuery and jquery-migrate plugin file based on URL --> <script src="testinit.js"></script> <script> TestManager.loadProject( "jquery", "git" ); </script> <script src="iframeTest.js"></script> <script> jQuery.noConflict(); TestManager.loadProject( "jquery-migrate", "dev", true ); </script> <!-- Keep these two in separate script tags so Migrate loads first --> <script> startIframeTest( jQuery.event.props.concat([ "TESTING" ]) ); </script> </head> <body> <div data-role="page"> <div data-role="header"> <h1>jQuery Migrate test for jQuery.event.props.concat() compat</h1> </div><!-- /header --> <div role="main" class="ui-content"> <p>Page content</p> </div><!-- /content --> <div data-role="footer"> <h4>Footer</h4> </div><!-- /footer --> </div><!-- /page --> </body> </html>