DetroitGuru
Forum Guru
original:
You do not have permission to view the full content of this post. Log in or register now.
my clone:
You do not have permission to view the full content of this post. Log in or register now.. blogspot. com
full automation no need mag post. pwede pala ganto to sa blogger
pm sa interesado..
blogger:
demo:
You do not have permission to view the full content of this post. Log in or register now. .com
or
You do not have permission to view the full content of this post. Log in or register now.
also my other posts:
Anime only
#######################################
NewFflix
#######################################
Flixmovies
#######################################
Web Template Thread:
Dooplay (Fixed + 5 players/api)
Pwedi nga nmn pala using javascript by calling API. Di ko to naisip. Yung buong akala ko kasi dapat may backend pero usually ginagamit to sa data management & storage, user auth, & security etc.
Hirap din ako mag customize sa blogger kasi di ko ma gets yung structure ng code niya. Ang hirap pang e edit at test. Pag self hosted kasi nasa code editor mo lang e run mo nlng sa local server to test ganun lang ka simple at easy.
Pwedi din dropdown kagaya ng sa website ko:sige lang lods.. sample code lang yan pero madami na kayo pwede gawin dyan. modify nyo nalang. pwede nyo lagay sa div/box tas gawin scrollable para di humaba yung post
View attachment 3261054
HTML:
<h1>Select an Episode</h1> <select id="episodeDropdown" onchange="selectEpisode()"> <option value="" disabled selected>Select an episode</option> <option value="episode1">Episode 1</option> <option value="episode2">Episode 2</option> <option value="episode3">Episode 3</option> </select> <div id="episodeDetails"> <p id="episodeDescription"></p> </div>
JavaScript:
function selectEpisode() {
var dropdown = document.getElementById("episodeDropdown");
var selectedValue = dropdown.value;
var description = document.getElementById("episodeDescription");
if (selectedValue === "episode1") {
description.textContent = "Episode 1: Living in the Mist";
} else if (selectedValue === "episode2") {
description.textContent = "Episode 2: Everyone Has a Demon in Their Heart";
} else if (selectedValue === "episode3") {
description.textContent = "Episode 3: Joining Hands with a Demon";
} else {
description.textContent = "";
}
}
Sample lang din yan. Not actual code on my website kasi mas complex intindihin yon. Gawin niyo lng muna simple and improve overtime. Yon lang.

You do not have permission to view the full content of this post.
