diff options
| author | Rob Hudson | 2010-02-11 14:19:30 -0800 | 
|---|---|---|
| committer | Rob Hudson | 2010-02-11 14:19:30 -0800 | 
| commit | 9327cd86b2c9f1db0108c97e630c6d5610e65b0d (patch) | |
| tree | 30244cedcf7daf60e6540a75d6875546832232cc /example/templates/jquery/index.html | |
| parent | 98d919189d5b25057cb0cb7ee486a591a1f6cead (diff) | |
| download | django-debug-toolbar-9327cd86b2c9f1db0108c97e630c6d5610e65b0d.tar.bz2 | |
Added example project directory.
Currently this allows for easy manual testing a few other Javascript libraries
and whether the debug toolbar javascript conflicts with them.
Diffstat (limited to 'example/templates/jquery/index.html')
| -rw-r--r-- | example/templates/jquery/index.html | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/example/templates/jquery/index.html b/example/templates/jquery/index.html new file mode 100644 index 0000000..419f348 --- /dev/null +++ b/example/templates/jquery/index.html @@ -0,0 +1,21 @@ +<html> +<head> +	<meta http-equiv="content-type" content="text/html; charset=utf-8"> +	<title>Old jQuery Test</title> +	<style> +	.hide {display:none;} +	#v {font-weight:bold;} +	</style> +	<script type="text/javascript" charset="utf-8" src="{{ MEDIA_URL }}/js/jquery.js"></script> +	<script type="text/javascript" charset="utf-8"> +		$(document).ready(function() { +			$('p.hide').show(); +			$('#v').append($.fn.jquery); +		}); +	</script> +</head> +<body> +	<h1>jQuery Test</h1> +	<p class="hide">If you see this, jQuery <span id="v"></span> is working.</p> +</body> +</html> | 
