Displaying 1 result from an estimated 1 matches for "makerequest".
Did you mean:
make_request
2006 Apr 15
1
Begin with Autocompleter
...eveloper that need a little help with scriptaculous "Autocompleter". I work with PRADO framework (http://www.xisc.com) and PHP as a script language. Now this is a little function in JavaScript for make a AJAX call and show the results without reload the entire page. See below:
1 function makeRequest(url,element) {
2 var http_request = false;
3 if (window.XMLHttpRequest) { // Mozilla, Safari,...
4 http_request = new XMLHttpRequest();
5 if (http_request.overrideMimeType) {
6 http_request.overrideMimeType(''text/xml'');
7 }
8 } else if (window.ActiveXObject) { // IE
9...