2012-03-19 20:21:56 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<textarea id="testBox" onfocus="reframe(this);">blahblahblah</textarea>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function reframe(textbox) {
|
|
|
|
textbox.style.display = "none";
|
|
|
|
textbox.style.display = "";
|
|
|
|
textbox.clientWidth;
|
|
|
|
}
|
|
|
|
//Adding focus to the textbox should trigger a spellcheck
|
|
|
|
document.getElementById("testBox").focus();
|
2012-05-11 19:39:38 +04:00
|
|
|
document.getElementById("testBox").blur();
|
2012-03-19 20:21:56 +04:00
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|