Created
November 23, 2010 06:12
-
-
Save DylanFM/711351 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<title>Test for jQuery clone bug</title> | |
</head> | |
<body> | |
<section> | |
<p>Here is a little paragraph.</p> | |
</section> | |
<pre id="html5"></pre> | |
<hr> | |
<div> | |
<p>Here is a little paragraph.</p> | |
</div> | |
<pre id="html4"></pre> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script> | |
<script> | |
$(function () { | |
$('#html5').text( $('section').clone().html() ); | |
$('#html4').text( $('div').clone().html() ); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment