Skip to main content

Bug Tracker

Side navigation

Ticket #2346: 123-test.html


File 123-test.html, 0.6 KB (added by kowcik, February 14, 2008 10:20AM UTC)

simple DOM ready test

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="jquery-1.2.3-packed.js"></script>

</head>

<body>
<script type="text/javascript">
jQuery(document).
	ready(function () {
		$("<div>I'm ready</div>").appendTo('body:first').
			animate({"fontSize":"30px"}, 'slow')
	})
</script>
</body>
</html>

Download in other formats:

Original Format