Skip to content

Instantly share code, notes, and snippets.

@saeed698
Created December 6, 2025 04:26
Show Gist options
  • Select an option

  • Save saeed698/09a82d1acefa105cab42b4f4754930a8 to your computer and use it in GitHub Desktop.

Select an option

Save saeed698/09a82d1acefa105cab42b4f4754930a8 to your computer and use it in GitHub Desktop.
<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