Hi, Code not working in Google Chrome. But working in IE. What shall I do to make it working in Chrome too? var req = new XMLHttpRequest(); req.open('GET', 'http://www.google.com/', false); req.send(); var temp=new Array(); if(req.status == 200) { temp = req.responseText; } In temp variable, I am getting the source code of google.com if I run in IE. But fails in chrome. Regards.