4 Einträge, 1 Seite |
1
2
3
4
5
<object classid="CLSID:CA8A9780-280D-11CF-A24D-444553540000" type="application/pdf" data="/docs/beispiel.pdf" width="100%" height="100%">
<param name="src" value="/docs/beispiel.pdf">
<embed src="/docs/beispiel.pdf" type="application/pdf" width="100%" height="100%">
<noembed>Ihr Browser kann den MIME Typ application/pdf leider nicht verarbeiten!</noembed>
</object>
1
2
object classid="CLSID:<%clsid%>" type="<%doctype%>" data="<%document%>" width="100%" height="100%">
[...etc...]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[...]
function plugIE() {
var b=document.body;
b.addBehavior("#default#clientCaps");
return (b.isComponentInstalled("{CA8A9780-280D-11CF-A24D-444553540000}", "ComponentID"));
}
if(is_ie) r=plugIE(); else r=plugNS();
if(r){
// Das Dokument wird eingebunden;
}
else {
// Ein Hinweis wird ausgegeben;
}
[...]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html XMLNS:MSIE>
<head>
[...]
<style type="text/css">
@media all {
IE\:clientCaps {behavior:url(#default#clientcaps)}
}
</style>
</head>
<body>
<MSIE:clientCaps id="oClientCaps" />
[...]
<script language="JavaScript">
function plugIE()
{
return oClientCaps.isComponentInstalled("{CA8A9780-280D-11CF-A24D-444553540000}", "ComponentID"));
}
[...]
</script>
[...]
4 Einträge, 1 Seite |