Side navigation
Ticket #5483: test-5483.html
File test-5483.html, 0.4 KB (added by dmethvin, November 11, 2009 01:05PM UTC)
Updated test case showing problem with leading spaces
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-nightly.min.js"></script>
<script type="text/javascript">
$(function(){
jQuery('<div>').html('<div>hello1</div>').appendTo("body");
jQuery('<div>').html('x<div>hello2</div>').appendTo("body");
jQuery('<div>').html(' <div>hello2</div>').appendTo("body");
});
</script>
</head>
<body>
</body>
</html>
Download in other formats:
Original Format
File test-5483.html, 0.4 KB (added by dmethvin, November 11, 2009 01:05PM UTC)
Updated test case showing problem with leading spaces
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-nightly.min.js"></script>
<script type="text/javascript">
$(function(){
jQuery('<div>').html('<div>hello1</div>').appendTo("body");
jQuery('<div>').html('x<div>hello2</div>').appendTo("body");
jQuery('<div>').html(' <div>hello2</div>').appendTo("body");
});
</script>
</head>
<body>
</body>
</html>