Browse Source

Update ajax.js

Volodymyr Tkach 2 years ago
parent
commit
d408763b33
1 changed files with 11 additions and 0 deletions
  1. 11 0
      js/ajax.js

+ 11 - 0
js/ajax.js

@@ -151,6 +151,17 @@ ajax.processTags = function() {
 	};
 };
 
+ajax.reloadTag = function(tag) {
+	ajax.processTag(tag);
+};
+
+ajax.reloadTagById = function(id) {
+	var tag = document.getElementById(id)
+	if(tag != null) {
+		ajax.reloadTag(tag);
+	};
+};
+
 if(window.attachEvent) {
 	window.attachEvent('onload', ajax.processTags);
 } else if(window.addEventListener) {