On Wed, Feb 3, 2010 at 4:29 PM, mangatmodi <[email protected]> wrote:
>
>> Are you using IE 6 ?
>> It looks like the website is using ActiveXObject instead of
>> XMLHttpRequest to display Ajax page.
>> yes, the drop-down menu is coming from Ajax. ActiveXObject are now
>> depreciated. So, there is no problem with the browser. Actually the
>> site need an updation !!
>
> Yes there is the code from the site :-
> <!------------------------------------------------------------------------------------------
>>
> var xmlDocCity = new ActiveXObject("Microsoft.XMLDOM");
>        xmlDocCity.async="false";
>        xmlDocCity.loadXML(citymaster);
>        xmlcityObject = xmlDocCity.documentElement;
> <!------------------------------------------------------------------------------------------
>>
> Now, as you can see most modern browser use XMLHttpRequest to display
> page by Ajax, and they will be unable to load ActiveX Object.
> Since ActiveX Object is Microsoft Patent, it is not supported by Open
> Source browser !!
>
> --
> l...@iitd - http://tinyurl.com/ycueutm
>

If you want such website to visible under FOSS browser then
"Greasemonky" script can help.
Using greasemonkey script , after the page load you can run custom
javascript function which replace ActiveXObject with XMLHttpRequest
and other things where changes are required.

-- 
┌─────────────────────────┐
│    Narendra Sisodiya ( नरेन्द्र सिसोदिया )
│    Society for Knowledge Commons
│    Web : http://narendra.techfandu.org
└─────────────────────────┘

-- 
l...@iitd - http://tinyurl.com/ycueutm

Reply via email to