$(document).ready(function(){
$('.deletemsg').each(function(){
	$(this).click(function(){
		delmsg = confirm('Are you sure you want to delete this record?');
		if (delmsg) {	
			$.ajax({
			  type: 'POST',
			  url: $(this).attr('href'),
			  data: {},
			  success: function (data) {
			  	//alert(data);
				location.reload(true);
			  }
			});

		}
		return false;
	});
});
$('.addmsg').each(function(){
	$(this).click(function(){
		addmsg = prompt("What do you want the group called?", "");
		if (addmsg) {	
			$.ajax({
			  type: 'POST',
			  url: $(this).attr('href'),
			  data: {"name":addmsg},
			  success: function (data) {
			  	//alert(data);
				location.reload(true);
			  }
			});

		}
		return false;
	});
});
});