Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<title>Blah</title>
<script language=JavaScript>
function cb() {
blahForm.blahTextarea.value = window.clipboardData.getData("Text");
}
</script>
</head>
<body>
<form name=blahForm>
<input type=button value='Click Me' onclick='cb()'>
<br>
<textarea name=blahTextarea></textarea>
</form>
</body>
</html>