Updates:
Probably best to put this on a test site first. It's pretty well tested on 1.7.7 and is not a hack of any other plugin. Built from scratch.
Thoroughly test before putting on a production site. Make sure things are working for non-admin users especially with access settings etc. If you find a bug let me know please.
What's Coming Up?:
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
Muy bueno sobre todo, la idea de utilizar xmlhttprequest y no $ajax de jquery
algo asi como
//=====================
// xmlhttpRequest
//=====================
function http(){
if(typeof window.XMLHttpRequest!='undefined'){
return new XMLHttpRequest();
}else{
try{
return new ActiveXObject('Microsoft.XMLHTTP');
}catch(e){
alert('Su navegador no soporta AJAX');
return false;
}
}
}
function request(url,callback,params){
var H=new http();
var divResultado = document.getElementById('chat');
var url = "http://www.misitio.com/ejemplo.php"
if(!H)return;
H.open('post',url,true);
H.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
H.onreadystatechange=function(){
divResultado.innerHTML = H.responseText
}
}
es una solucion para no saturar el servidor con tantas llamadas ajax
does this plugin need any autocomplete plugin support for retrieving names of to????????
This plugins does not work. Can't send any message.
I'd like to develop a version compatible with elgg 1.8