Forum Moderators: open
<html>
<head>
<script type="text/javascript">
function selectionFunc() {
var iframe = document.getElementById("if");
alert(iframe.contentWindow.document.queryCommandValue("fontsize"));
}
window.onload = function() {
var iframe = document.getElementById("if");
iframe.contentWindow.document.designMode = "on"
if (document.addEventListener) {
iframe.contentWindow.document.addEventListener('mouseup', selectionFunc, false);
} else if (document.attachEvent) {
iframe.contentWindow.document.onmouseup = selectionFunc;
}
};
</script>
</head>
<body>
<iframe id="if"></iframe>
</body>
</html>