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.
<input type="text" onpaste="return checkClipboard()">
...
<script language="javascript">
function checkClipboard()
{ var forbidden_word = "phuck";
blah = window.clipboardData.getData("Text");
bValid = (blah.indexOf(forbidden_word)== -1)
if (!bValid) alert( "I'm sorry Dave. I can't do that" );
return bValid;
}
</script>