web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Copy to Clipboard usin...
Power Apps
Unanswered

Copy to Clipboard using HTML text in Powerapps

(0) ShareShare
ReportReport
Posted on by 26

Is it possible to add a "Copy to Clipboard" using HTML text in PowerApps?

 

For displaying all my data from the gallery, I am using the HTML text label. I am able to change the font colors, font size, etc, added a Copy to Clipboard button inside the HTML text label, but I can't seem to figure out how to copy all text inside HTML text label.

 

<html>
<head>
<title>Copy Text to Clipboard</title>
<script>
function copyToClipboard() {
var textToCopy = 'Your text goes here';

var tempInput = document.createElement("input");
tempInput.setAttribute("value", textToCopy);
document.body.appendChild(tempInput);

tempInput.select();document.execCommand("copy");

document.body.removeChild(tempInput);

alert("Text copied to clipboard: " + textToCopy);
}
</script>
</head>
<body>


<!-- Create a button that triggers the copyToClipboard function when clicked -->
<button onclick="copyToClipboard()">Copy Text to Clipboard</button>
</body>
</html>

Categories:
I have the same question (0)
  • BCLS776 Profile Picture
    8,994 Moderator on at

    I don't believe the HTML text control supports the <script> tag, so consider using the Copy() function to achieve this.

     

    Hope that helps,

    Bryan

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 401 Most Valuable Professional

#2
11manish Profile Picture

11manish 201 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 128 Super User 2026 Season 2

Last 30 days Overall leaderboard