Forum: JavaScript / DHTML / AJAX 15 Days Ago |
| Replies: 1 Views: 364 Hi there,
I have some simple code that goes off and loads a bunch of tiled images into a web page. What I am trying to do is replace one of the tiles with a blank image in the event the image... |
Forum: JavaScript / DHTML / AJAX Mar 18th, 2009 |
| Replies: 1 Views: 414 Would something like this work:
function testIIS(){
var http1 = getHTTPObject();
http1.open("GET", "http://devsptl/test2/test.txt", true);
http1.onreadystatechange = function() {
if... |
Forum: JavaScript / DHTML / AJAX Mar 18th, 2009 |
| Replies: 1 Views: 414 Does anyone know of a way to retrieve the output of a webpage and place the output in the current web page (not using iframes)?
For example, here is a simple web page (test.html):
<html>
This... |