Calculator Tools Calculator Tools
Create

Paw Patrol Video Selector

Nov 11, 2023

About this app

Select a Paw Patrol Video

Paw Patrol Video Selector

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Paw Patrol Video Selector</title>
<meta name="description" content="Select a Paw Patrol Video">
<meta name="keywords" content="Paw Patrol, YouTube, Videos">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.

// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// Get the main container element
const mainContainer = document.querySelector("#main-container");

// Create a function to generate a random YouTube video URL
function getRandomVideoURL() {
const videoId = Math.floor(Math.random() * (4134 - 3981 + 1)) + 3981;
const url = `https://www.youtube.com/watch?v=${videoId}`;
return url;
}

// Create a function to handle button click events
function handleClick() {
// Get a random video URL
const videoURL = getRandomVideoURL();

// Open the video URL in a new tab
window.open(videoURL, "_blank");
}

// Create a function to generate the buttons
function generateButtons() {
// Clear the main container
mainContainer.innerHTML = "";

// Create a button for each episode number
for (let i = 3981; i <= 4134; i++) {
const button = document.createElement("button");
button.innerText = i;
button.classList.add("btn", "btn-primary", "m-2");
button.addEventListener("click", handleClick);
mainContainer.appendChild(button);
}
}

// Generate the initial set of buttons
generateButtons();
});

} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>

<style>
/* App CSS Goes Here */
body {
background-color: #f5f5f5;
font-family: 'Roboto', sans-serif;
}

#main-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-top: 50px;
}

.btn {
font-size: 18px;
padding: 10px 20px;
border-radius: 10px;
transition: background-color 0.3s ease;
}

.btn-primary {
background-color: #007bff;
border-color: #007bff;
}

.btn-primary:hover {
background-color: #0069d9;
border-color: #0062cc;
}

.m-2 {
margin: 10px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<!-- App HTML Goes Here -->
</div>
</body>
</html>