Lid |
|
ja daarom
Ondertussen heb ik een kleine oplossing gevonden alleen heb ik nu nog een melding van me browser wat me dwars zit
mocht iemand weten hoe ik deze kan uitschakelen.
function testProtocolHandler(el)
{
if ("protocolLong" in el)
{
return false;
}
var ifr = document.getElementById("protocolTester");
try {
ifr.contentWindow.location = el.href;
window.setTimeout(function () {
try {
alert(ifr.contentWindow.location);
} catch (e) { alert("Application is not installed"); }
}, 0);
} catch(e) {
if (e.name == "NS_ERROR_UNKNOWN_PROTOCOL") {
alert("Application is not installed");
}
}
return false;
}
function testProtocolHandler(el) { if ("protocolLong" in el) { return false; } var ifr = document.getElementById("protocolTester"); try { ifr.contentWindow.location = el.href; window.setTimeout(function () { try { alert(ifr.contentWindow.location); } catch (e) { alert("Application is not installed"); } }, 0); } catch(e) { if (e.name == "NS_ERROR_UNKNOWN_PROTOCOL") { alert("Application is not installed"); } } return false; }
De kleine JavaScript waar ik momenteel mee bezig ben. |