mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
08d73d7f9c
Ref gh-3040
27 lines
609 B
HTML
27 lines
609 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
|
<title>jQuery selector - sizzle cache</title>
|
|
|
|
<script src="../../jquery.js"></script>
|
|
<script>
|
|
document.write(
|
|
"<script>var $cached = jQuery.noConflict(true);<\x2Fscript>" +
|
|
"<script src='" + document.getElementById("jquery-js").src + "?overwrite'><\x2Fscript>"
|
|
);
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<div class="test">
|
|
<a href="#" id="collision">Worlds collide</a>
|
|
</div>
|
|
<script>
|
|
jQuery( function() {
|
|
window.parent.iframeCallback( jQuery, window, document );
|
|
} );
|
|
</script>
|
|
</body>
|
|
</html>
|