web/wp-content/plugins/network-publisher/networkpub.js
author hurons@caf4f556-3d62-0410-8435-a86758001935
Mon, 17 May 2010 10:08:38 +0000
changeset 180 d8780eeb2607
parent 170 8e3a5a6fc63e
child 194 32102edaa81b
permissions -rw-r--r--
- delete time in the home calendar - color in seminar menu - order element by dae in the menu - delete item's number restriction in menu - acces to Language navigation menu - navigation correction - change traduction

jQuery(document).ready(function($){
	$(".networkpubre").bind("click", function(e) {
		var key = $(this).attr("id");
		if(key) {
			var blog_url = $("#networkpub_plugin_url").val();
			$.post(blog_url+"/network-publisher/networkpub_ajax.php", {key:key}, function(data) {
				var dr = data.split("_");
				$("#r_key_"+dr[1]).remove();
		    });
		} 
		return false;
	});
})