Is there a setting to enable JSON in a web page?
try{
data = JSON.parse(rawData);
}
catch(e){
document.getElementById("error").innerText =e.message ;
}
{/code]
returns
'JSON' is undefined
try{
data = JSON.parse(rawData);
}
catch(e){
document.getElementById("error").innerText =e.message ;
}
{/code]
returns
'JSON' is undefined
The IE backend uses Microsoft's Trident rendering engine, specifically the version used by the locally installed copy of Internet Explorer. As such it is only available for the MSW port. By default recent versions of the WebBrowser control, which this backend uses, emulate Internet Explorer 7. This can be changed with a registry setting, see this article for more information. This backend has full support for custom schemes and virtual file systems.