window.postMessage - difficulties to make it work
问题 I try to establish communication from PayPal Ipn.php script (when "Completed" message is received - that part is tested and works well), and the original page of Form that contains a submit button. The idea is to have the submit button clicked. The 2 pages are on same domain using the same protocol. Here is my script on Ipn.php script: $click = "<script> window.postMessage('Completed', 'http://www.example.com'); </script>"; echo $click; echo "test"; // I receive it. After further testing the