// VERSION 2 used for Real Estate BuilderSearch Form ONLY!!!!!!!!!!!!!! //Created by Sean Kane (http://celtickane.com/programming/code/ajax.php) //Feather Ajax v1.0.1 // Modified to use a '^' as the deliminator rather than the default '|' // set the searchform url for ajax data var ajax_url = '/apps/inc/ajax_searchboxes/ajax_realestate_builders_searchform_v2.php'; function AjaxObject101() { this.createRequestObject = function() { try { var ro = new XMLHttpRequest(); } catch (e) { var ro = new ActiveXObject("Microsoft.XMLHTTP"); } return ro; } this.sndReq = function(action, url, data) { if (action.toUpperCase() == "POST") { this.http.open(action,url,true); this.http.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); this.http.onreadystatechange = this.handleResponse; this.http.send(data); } else { this.http.open(action,url + '?' + data,true); this.http.onreadystatechange = this.handleResponse; this.http.send(null); } } this.handleResponse = function() { if ( me.http.readyState == 4) { if (typeof me.funcDone == 'function') { me.funcDone();} var rawdata = me.http.responseText.split("^"); for ( var i = 0; i < rawdata.length; i++ ) { var item = (rawdata[i]).split("=>"); if (item[0] != "") { if (item[1].substr(0,3) == "%V%" ) { document.getElementById(item[0]).value = item[1].substring(3); } else { document.getElementById(item[0]).innerHTML = item[1]; } } } } if ((me.http.readyState == 1) && (typeof me.funcWait == 'function')) { me.funcWait(); } } var me = this; this.http = this.createRequestObject(); var funcWait = null; var funcDone = null; } // try to self fire so we dont need the tags on the html page var ao = new AjaxObject101(); ao.sndReq('get', ajax_url,'lookup=display_form'); function get_ajax() { frmEle = document.getElementById("search") var state = frmEle['state'].value; if (testIsValidObject(frmEle['SearchCity[]']) != false && testIsValidObject(frmEle['SearchCity[]']) != "undefined") { var city = frmEle['SearchCity[]'].value; } else { var city = ""; } var url = '&State='+state+'&City='+city; ao.sndReq('get', ajax_url,'lookup=display_cities'+url); } function get_cities() { frmEle = document.getElementById("search") var state = frmEle['state'].value; var url = '&State='+state ao.sndReq('get', ajax_url,'lookup=display_cities'+url); } function testIsValidObject(objToTest) { if (null == objToTest) { return false; } if ("undefined" == typeof(objToTest) ) { return false; } return true; }