By bloid
via simplejs.bleebot.com
Published: Dec 15 2006 / 15:25
SimpleJS is a javascript framework that's simple and light making it possible to quickly and easily get AJAX and DOM effects up and running.
Tweet
SaveShareSend
Tags: frameworks, javascript
Comments
bloid replied ago:
They could do with an English speaking proofreader...
jiminoc replied ago:
horrible! please do not use this framework. this code blows. Completely novice for any type of real ajax application. Everything is a global variable and function????
code sample... speaks for itself.
function $ajax(file)
{
if(window.XMLHttpRequest) // FIREFOX
xhr_object = new XMLHttpRequest();
else if(window.ActiveXObject) // IE
xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
else
return(false);
xhr_object.open("GET", file, false);
xhr_object.send(null);
if(xhr_object.readyState == 4) return(xhr_object.responseText);
else return(false);
}
unchqua replied ago:
They honestly inform you about such case.
roy replied ago:
simpleajax plug-in for simpleJS !!!
http://simplejs.bleebot.com/en.html
Voters For This Link (11)
Voters Against This Link (0)