| javascript Programming Glossary: polltimerWhats the easiest way to determine is a user in online? (PHP/MYSQL) http://stackoverflow.com/questions/1051895/whats-the-easiest-way-to-determine-is-a-user-in-online-php-mysql 
 Cross-browser implementation of “HTTP Streaming” (push) AJAX pattern http://stackoverflow.com/questions/1112413/cross-browser-implementation-of-http-streaming-push-ajax-pattern  http.onreadystatechange handleResponse http.send null pollTimer setInterval handleResponse 1000 The handleResponse function.. return if http.readyState 4 http.status 200 clearInterval pollTimer inProgress false  In konqueror http.responseText is sometimes.. 4 prevDataLength http.responseText.length clearInterval pollTimer inProgress false  javascript ajax streaming xmlhttprequest comet.. 
 is it possible to open a popup with javascript and then detect when the user closes it? http://stackoverflow.com/questions/3291712/is-it-possible-to-open-a-popup-with-javascript-and-then-detect-when-the-user-clo  to suit. var win window.open popup.html thePopUp var pollTimer window.setInterval function if win.closed false is required.. required for compatibility with Opera window.clearInterval pollTimer someFunctionToCallWhenPopUpCloses 200   share improve this answer.. 
 XmlHttpRequest.responseText while loading (readyState==3) in Chrome http://stackoverflow.com/questions/3880381/xmlhttprequest-responsetext-while-loading-readystate-3-in-chrome  return if http.readyState 4 http.status 200 clearInterval pollTimer inProgress false In konqueror http.responseText is sometimes.. 4 prevDataLength http.responseText.length clearInterval pollTimer inProgress false With php script which flushes me data without.. 
 |