Calculator Tools Calculator Tools
Create

Spidey and his Amazing Friends Transcript

Aug 12, 2026

About this app

Transcript of Spidey and his Amazing Friends episodes

Spidey and his Amazing Friends Transcript Spidey and his Amazing Friends Transcript Episodes 1 - Rhinoctopus 2 - Mystery on Goblin Island 3 - The Pumpkin Problem 4 - Pecking Prankster Pigeons Transcript Trivia Goofs Cast Summary Plot Characters Trace-E and Twist-E Twirl-E

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>Spidey and his Amazing Friends Transcript</title>
<meta name="description" content="Transcript of Spidey and his Amazing Friends episodes">
<meta name="keywords" content="Spidey and his Amazing Friends, transcript, episodes">

<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">

<!-- Built-In Functions for Apps -->
<script type="text/javascript">
var localStoragePrefix = "ct-169098982020650";
var lastSave = 0;
// save to localstorage
function saveLocal(data) {
if (Date.now() - lastSave < 1000) {
return;
}
// save to cookie
let cookie = localStoragePrefix + "=" + JSON.stringify(data) + "; path=" + window.location.pathname + "'; SameSite=Strict";
cookie += "; expires=" + new Date(Date.now() + 1000 * 60 * 60 * 24 * 365 * 1000).toUTCString();
document.cookie = cookie;
lastSave = Date.now();
}

// load from localstorage
function loadLocal() {
var cookiePrefix = localStoragePrefix + "=";
var cookieStart = document.cookie.indexOf(cookiePrefix);
if (cookieStart > -1) {
let cookieEnd = document.cookie.indexOf(";", cookieStart);
if (cookieEnd == -1) {
cookieEnd = document.cookie.length;
}
var cookieData = document.cookie.substring(cookieStart + cookiePrefix.length, cookieEnd);
return JSON.parse(cookieData);
}
}
</script>

<script type="text/javascript">
// App Javascript Goes Here
$(document).ready(function() {
// Episode 1 - Rhinoctopus
$("#ep1").click(function() {
$("#transcript").text("Rhinoctopus transcript...");
$("#trivia").text("Rhinoctopus trivia...");
$("#goofs").text("Rhinoctopus goofs...");
$("#cast").text("Rhinoctopus cast...");
$("#summary").text("Rhinoctopus summary...");
$("#plot").text("Rhinoctopus plot...");
});

// Episode 2 - Mystery on Goblin Island
$("#ep2").click(function() {
$("#transcript").text("Mystery on Goblin Island transcript...");
$("#trivia").text("Mystery on Goblin Island trivia...");
$("#goofs").text("Mystery on Goblin Island goofs...");
$("#cast").text("Mystery on Goblin Island cast...");
$("#summary").text("Mystery on Goblin Island summary...");
$("#plot").text("Mystery on Goblin Island plot...");
});

// Episode 3 - The Pumpkin Problem
$("#ep3").click(function() {
$("#transcript").text("The Pumpkin Problem transcript...");
$("#trivia").text("The Pumpkin Problem trivia...");
$("#goofs").text("The Pumpkin Problem goofs...");
$("#cast").text("The Pumpkin Problem cast...");
$("#summary").text("The Pumpkin Problem summary...");
$("#plot").text("The Pumpkin Problem plot...");
});

// Episode 4 - Pecking Prankster Pigeons
$("#ep4").click(function() {
$("#transcript").text("Pecking Prankster Pigeons transcript...");
$("#trivia").text("Pecking Prankster Pigeons trivia...");
$("#goofs").text("Pecking Prankster Pigeons goofs...");
$("#cast").text("Pecking Prankster Pigeons cast...");
$("#summary").text("Pecking Prankster Pigeons summary...");
$("#plot").text("Pecking Prankster Pigeons plot...");
});

// Twirl-E
$("#twirle").click(function() {
alert("Twirl-E debuts in episodes 2 and 4!");
});

// Trace-E and Twist-E
$("#tracee-twiste").click(function() {
alert("Trace-E and Twist-E appear in episodes 2 and 4!");
});
});
</script>

<style>
/* App CSS Goes Here */
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Spidey and his Amazing Friends Transcript</h1>
<hr>
<div class="row">
<div class="col-md-4">
<h2>Episodes</h2>
<ul>
<li><a id="ep1" href="#">1 - Rhinoctopus</a></li>
<li><a id="ep2" href="#">2 - Mystery on Goblin Island</a></li>
<li><a id="ep3" href="#">3 - The Pumpkin Problem</a></li>
<li><a id="ep4" href="#">4 - Pecking Prankster Pigeons</a></li>
</ul>
</div>
<div class="col-md-8">
<h2>Transcript</h2>
<p id="transcript"></p>
<h2>Trivia</h2>
<p id="trivia"></p>
<h2>Goofs</h2>
<p id="goofs"></p>
<h2>Cast</h2>
<p id="cast"></p>
<h2>Summary</h2>
<p id="summary"></p>
<h2>Plot</h2>
<p id="plot"></p>
</div>
</div>
<hr>
<h3>Characters</h3>
<ul>
<li><a id="tracee-twiste" href="#">Trace-E and Twist-E</a></li>
<li><a id="twirle" href="#">Twirl-E</a></li>
</ul>
</div>
</body>
</html>