mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-18 23:05:40 -04:00
19 lines
387 B
HTML
19 lines
387 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<script>
|
|
function addPlugin(aId, aType = "application/x-test") {
|
|
var embed = document.createElement("embed");
|
|
embed.setAttribute("id", aId);
|
|
embed.style.width = "200px";
|
|
embed.style.height = "200px";
|
|
embed.setAttribute("type", aType);
|
|
return document.body.appendChild(embed);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|