<!doctype html><html><head><meta charset="UTF-8"></head><body><form id="form"><input type="text" placeholder="Enter message" name="message"><input type="submit" value="Click to send"></form><script>form.onsubmit = function() {window.parent.postMessage(this.message.value, '*');return false;};</script></body></html>