3 // http://jquery.com/docs/ajax/
5 if ( typeof XMLHttpRequest == 'undefined' && typeof window.ActiveXObject == 'function') {
6 XMLHttpRequest = function() {
7 return new ActiveXObject((navigator.userAgent.toLowerCase().indexOf('msie 5') >= 0) ?
8 "Microsoft.XMLHTTP" : "Msxml2.XMLHTTP");
12 // Counter for holding the active query's
15 $.xml = function( type, url, data, ret ) {
16 var xml = new XMLHttpRequest();
20 xml.open(type || "GET", url, true);
22 xml.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
24 // Set header so calling script knows that it's an XMLHttpRequest
25 xml.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
27 /* Force "Connection: close" for Mozilla browsers to work around
28 * a bug where XMLHttpReqeuest sends an incorrect Content-length
29 * header. See Mozilla Bugzilla #246651.
31 if ( xml.overrideMimeType )
32 xml.setRequestHeader('Connection', 'close');
34 xml.onreadystatechange = function() {
36 if ( xml.readyState == 1 ) {
40 // Show loader if needed
41 if ( ($.xmlActive >= 1) && ($.xmlCreate) )
45 // Socket is closed and data is available
46 if ( xml.readyState == 4 ) {
50 // Hide loader if needed
51 if ( ($.xmlActive <= 0) && ($.xmlDestroy) ) {
66 $.httpData = function(r,type) {
67 return r.getResponseHeader("content-type").indexOf("xml") > 0 || type == "xml" ?
68 r.responseXML : r.responseText;
71 $.get = function( url, ret, type ) {
72 $.xml( "GET", url, null, function(r) {
73 if ( ret ) { ret( $.httpData(r,type) ); }
77 $.getXML = function( url, ret ) {
78 $.get( url, ret, "xml" );
81 $.post = function( url, data, ret, type ) {
82 $.xml( "POST", url, $.param(data), function(r) {
83 if ( ret ) { ret( $.httpData(r,type) ); }
87 $.postXML = function( url, data, ret ) {
88 $.post( url, data, ret, "xml" );
91 $.param = function(a) {
93 if (a && typeof a == 'object' && a.constructor == Array) {
94 for ( var i=0; i < a.length; i++ ) {
95 s[s.length] = a[i].name + "=" + encodeURIComponent( a[i].value );
99 s[s.length] = j + "=" + encodeURIComponent( a[j] );
105 $.fn.load = function(a,o,f) {
107 // I overwrote the event plugin's .load
108 // this won't happen again, I hope -John
109 if ( a && a.constructor == Function ) {
110 return this.bind("load", a);
114 if ( o && o.constructor == Function ) {
123 $.xml(t,a,o,function(h){
125 self.html(h).find("script").each(function(){
127 $.eval( this.text || this.textContent || this.innerHTML );
136 * name: $.fn.formValues
137 * example: $('#frmLogin').formValues('sButton')
138 * docs: Gets form values and creates a key=>value array of the found values.
139 * Optionally adds the button which is clicked if you provide it.
140 * Only does this for ENABLED elements in the order of the form.
142 $.fn.formValues = function(sButton) {
144 var ok = {INPUT:true, TEXTAREA:true, OPTION:true};
147 $('*', this).each(function() {
148 // Skip elements not of the types in ok
149 if (!ok[this.tagName.toUpperCase()])
152 // Skip disabled elements
156 // Skip submit buttons and image elements
157 if ((this.type == 'submit') || (this.type == 'image'))
160 // Skip non-selected options
161 var oParent = this.parentNode;
162 var sNn = oParent.nodeName.toUpperCase();
163 if (((sNn == 'SELECT') || (sNn == 'OPTGROUP')) && (!this.selected))
166 // Skip non-checked nodes
167 if (((this.type == 'radio') || (this.type == 'checkbox')) && (!this.checked))
170 // If we come here, everything is fine
171 var sKey = this.name || this.id || oParent.name || oParent.id;
172 var sValue = this.value;
174 // If we don't have an ID, and the parent is an OPTGROUP,
175 // get the NAME or ID of the OPTGROUP's parent
176 if ((!sKey) && (sNn == 'OPTGROUP') && (oParent = oParent.parentNode))
177 sKey = oParent.name || oParent.id;
180 a.push({ name: sKey, value: sValue });
183 // Add submit button if needed
184 if (sButton && (sButton !== null)) {
185 var el = $(sButton).get(0);
187 name: el.name || el.id || el.parentNode.name || el.parentNode.id,
198 * example: $('someJQueryObject').update('sURL', 'sAction', 'aValues', 'fCallback');
199 * docs: Calls sURL with sAction and sends the aValues
200 * Puts the results from that call in the jQuery object and calls fCallback
202 $.fn.update = function(sURL, sMethod, aValues, fCallback) {
211 sResult = $.httpData(sResult);
213 // Update the element with the new HTML
216 // Evaluate the scripts AFTER this (so you can allready modify the new HTML!)
217 el.html(sResult).find("script").each(function(){
218 try { $.eval( this.text || this.textContent || this.innerHTML ); } catch(e) { }
221 // And call the callback handler :)
222 if (fCallback && (fCallback.constructor == Function))
229 * name: $.fn.serialize
230 * example: $('someJQueryObject').serialize('sButton', 'fCallback');
231 * docs: Calls the form's action with the correct method and the serialized values.
232 * Optionally adds the button which is clicked if you provide it.
233 * When there are results, the fCallback function is called.
235 $.fn.serialize = function(sButton, fCallback) {
236 var el = this.get(0);
242 $.param(this.formValues(sButton)),
244 if (fCallback && (fCallback.constructor == Function))
245 fCallback($.httpData(sResult));