diff options
Diffstat (limited to 'sample-clean.xhtml')
-rw-r--r-- | sample-clean.xhtml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sample-clean.xhtml b/sample-clean.xhtml new file mode 100644 index 0000000..2e6d411 --- /dev/null +++ b/sample-clean.xhtml @@ -0,0 +1,21 @@ +<!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> +<title>hello, world!</title> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<script type="text/javascript" src="jquery-2.0.2.js"></script> +<script type="text/javascript"> +<![CDATA[ + $("document").ready(function() { + $("p:last").css("border", "2px solid green"); + }); +]]> +</script> +</head> +<body> +<h1>hello, world!</h1> +<p>goodbye, world!</p> +</body> +</html> + |