aboutsummaryrefslogtreecommitdiffstats
path: root/example/templates/jquery/index.html
diff options
context:
space:
mode:
authorRob Hudson2010-02-11 14:21:27 -0800
committerRob Hudson2010-02-11 14:21:27 -0800
commit960d1cf38bb512794a29d0e49d9b7447602861d9 (patch)
treeaa9abb3cfc897fb5f184e371f33f7b4da8f46014 /example/templates/jquery/index.html
parented74a1c9fcc48855e4f3cb28db55d91fa9d1a089 (diff)
parent9327cd86b2c9f1db0108c97e630c6d5610e65b0d (diff)
downloaddjango-debug-toolbar-960d1cf38bb512794a29d0e49d9b7447602861d9.tar.bz2
Merge branch 'master' into js_closure
Diffstat (limited to 'example/templates/jquery/index.html')
-rw-r--r--example/templates/jquery/index.html21
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>