diff options
Diffstat (limited to 'js/debug.js')
-rw-r--r-- | js/debug.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/js/debug.js b/js/debug.js new file mode 100644 index 0000000..d69dd2b --- /dev/null +++ b/js/debug.js @@ -0,0 +1,14 @@ +$().ready(function() +{ + $(".ajax").each(function(x){ + $(this).click(function(){ + $.ajax({url: $(this).attr("tgt"), success: function(result){ + $("#ajax_result").html(result); + }}); + }) + }) +}) + +$("#reset").click(function(){ + +}); |