Paw Patrol Randomizer
About this app
Click on the buttons to watch a random Paw Patrol video on YouTube or read a random Paw Patrol AI script.
Paw Patrol Randomizer Paw Patrol Randomizer Watch Random Video Read Random AI Script
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 Randomizer</title>
<meta name="description" content="Click on the buttons to watch a random Paw Patrol video on YouTube or read a random Paw Patrol AI script.">
<meta name="keywords" content="Paw Patrol, random, video, script, YouTube, AI, ChatGPT">
<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">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
$(document).ready(function() {
// Get random video URL
function getRandomVideoUrl() {
var episodeNumber = Math.floor(Math.random() * (4134 - 3981 + 1) + 3981);
return "https://www.youtube.com/watch?v=" + episodeNumber;
}
// Get random AI script URL
function getRandomScriptUrl() {
var scriptNumber = Math.floor(Math.random() * (4134 - 3981 + 1) + 3981);
return "https://www.ai-script.com/paw-patrol/" + scriptNumber;
}
// Handle button click
$(".btn-random").click(function() {
var randomType = $(this).data("type");
var randomUrl = "";
if (randomType === "video") {
randomUrl = getRandomVideoUrl();
} else if (randomType === "script") {
randomUrl = getRandomScriptUrl();
}
if (randomUrl !== "") {
window.open(randomUrl, "_blank");
}
});
});
} 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;
}
.container {
padding-top: 50px;
text-align: center;
}
h1 {
font-size: 24px;
font-weight: bold;
margin-bottom: 30px;
}
.btn-group {
margin-bottom: 30px;
}
.btn-random {
padding: 10px 30px;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
background-color: #ff4081;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn-random:hover {
background-color: #e91e63;
}
.btn-random i {
margin-right: 5px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Paw Patrol Randomizer</h1>
<div class="btn-group">
<button class="btn btn-random" data-type="video"><i class="fa fa-play-circle"></i> Watch Random Video</button>
<button class="btn btn-random" data-type="script"><i class="fa fa-file-text"></i> Read Random AI Script</button>
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!