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

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Pages / Java script to Launch ...
Power Pages
Suggested Answer

Java script to Launch a video on a form in Power Pages

(0) ShareShare
ReportReport
Posted on by 82
Does anyone have an example of Java Script I can put on a Multi Step that would access a Web File and show the video uploaded to that Web File and play it on that form?
Categories:
I have the same question (0)
  • Suggested answer
    SaiRT14 Profile Picture
    1,990 Super User 2025 Season 2 on at
    Try  <div id="videoContainer"></div>
     
    in the Javascript
    document.addEventListener("DOMContentLoaded", function () {
        // Define the URL of the Web File where the video is stored
        const videoUrl = "https://yourwebsite.com/path-to-video.mp4"; // Replace with your Web File URL
        // Find the container where the video will be displayed
        const videoContainer = document.getElementById("videoContainer");
        // Check if the container is found
        if (videoContainer) {
            // Create the video element
            const videoElement = document.createElement("video");
            videoElement.src = videoUrl;
            videoElement.controls = true; // Adds video controls
            videoElement.width = 600; // Set width as needed
            videoElement.height = 400; // Set height as needed
            videoElement.autoplay = false; // Set to true if you want autoplay
            // Append the video to the container
            videoContainer.appendChild(videoElement);
        } else {
            console.log("Video container not found.");
        }
    });
     
    Add this JavaScript to the Page Custom JavaScript or the form's JavaScript editor.
     
    let me know, if you need more details. thanks.
     

     

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

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Pages

#1
Fubar Profile Picture

Fubar 74 Super User 2025 Season 2

#2
Jerry-IN Profile Picture

Jerry-IN 55

#3
sannavajjala87 Profile Picture

sannavajjala87 31

Last 30 days Overall leaderboard