Created
December 6, 2025 04:26
-
-
Save saeed698/09a82d1acefa105cab42b4f4754930a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <body> | |
| <input id="c" placeholder="کامنت خود را وارد کنید..." /> | |
| <button onclick="s()">ارسال</button> | |
| <script> | |
| let tg = window.Telegram.WebApp; | |
| tg.expand(); | |
| function s() { | |
| tg.sendData(document.getElementById("c").value); | |
| tg.close(); | |
| } | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment