summaryrefslogtreecommitdiff
path: root/modules/tag/js
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tag/js')
-rw-r--r--modules/tag/js/tag.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/tag/js/tag.js b/modules/tag/js/tag.js
new file mode 100644
index 00000000..6157b81b
--- /dev/null
+++ b/modules/tag/js/tag.js
@@ -0,0 +1,24 @@
+$("document").ready(function() {
+ $("#gTagLess").click(function(event){
+ event.preventDefault();
+ get_tag_block($("#gTagLess").attr("href"));
+ });
+ $("#gTagMore").click(function(event){
+ event.preventDefault();
+ get_tag_block($("#gTagMore").attr("href"));
+ });
+});
+
+function get_tag_block(url) {
+ $.get(url, function(data) {
+ $('#gTag').html(data);
+ $("#gTagLess").click(function(event){
+ event.preventDefault();
+ get_tag_block($("#gTagLess").attr("href"));
+ });
+ $("#gTagMore").click(function(event){
+ event.preventDefault();
+ get_tag_block($("#gTagMore").attr("href"));
+ });
+ });
+}