¡@

Home 

2014/10/16 ¤W¤È 12:10:41

jquery Programming Glossary: xmlhttp.status

Loading more items from database ~ Infinite Scroll

http://stackoverflow.com/questions/11878365/loading-more-items-from-database-infinite-scroll

for IE6 IE5 xmlhttp new ActiveXObject Microsoft.XMLHTTP xmlhttp.onreadystatechange function if xmlhttp.readyState 4 xmlhttp.status 200 document.getElementById entries .innerHTML xmlhttp.responseText Fire filter function once data loaded filterEntries..

Callback behavior of Javascript Object Error after XMLHttpRequest onreadystatechange statement

http://stackoverflow.com/questions/13521211/callback-behavior-of-javascript-object-error-after-xmlhttprequest-onreadystatech

true xmlhttp.setRequestHeader Content type application xhtml xml xmlhttp.send xmlhttp.onreadystatechange function if xmlhttp.status 404 result error404 if xmlhttp.readyState 4 xmlhttp.status 200 var d xmlhttp.responseText var jayQuery document.createElement.. xml xmlhttp.send xmlhttp.onreadystatechange function if xmlhttp.status 404 result error404 if xmlhttp.readyState 4 xmlhttp.status 200 var d xmlhttp.responseText var jayQuery document.createElement 'script' jayQuery.src ajax.googleapis.com ajax libs.. true xmlhttp.setRequestHeader Content type application xhtml xml xmlhttp.send xmlhttp.onreadystatechange function if xmlhttp.status 404 result error404 if xmlhttp.readyState 4 xmlhttp.status 200 d xmlhttp.responseText checker d function checker i..

How to make an ajax call without jquery?

http://stackoverflow.com/questions/8567114/how-to-make-an-ajax-call-without-jquery

for IE6 IE5 xmlhttp new ActiveXObject Microsoft.XMLHTTP xmlhttp.onreadystatechange function if xmlhttp.readyState 4 xmlhttp.status 200 document.getElementById myDiv .innerHTML xmlhttp.responseText xmlhttp.open GET ajax_info.txt true xmlhttp.send script..