Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

HELP: Video Tabs in Blogger Post

alienforce

Amateur
Advanced Member
Messages
111
Reaction score
0
Points
26
Pa help po please, paano po gawing naka tab ung mga videos sa isang blog post?

kagaya po nito?

Naka TAB sya Video 1, Video 2, Video 3, Video 4, Video 5

View attachment 210107

Sana po matulungan nyo ko, Nasubok ko po ung mag insert ng Plug In inside template tapos Insert code sa HTML ng Post pero not working po. May Maisuggest po ba kayong sa akin na effective way?

Gusto ko po kasing maging organize ung Post ko na may Video Supplements para mukhang malinis tignan.

Maraming salamat po
 

Attachments

  • Tabs.PNG
    Tabs.PNG
    356.4 KB · Views: 7
for sure meron mas madaling way jan...

pero yung long method:


<script>

function ShowHide(id){

for(x = 0; x <= 4; x++){
document.getElementById("divplayer"+x).style.display = 'none';
}

document.getElementById("divplayer"+id).style.display = 'block';
}

</script>


<input type='button' id='vid1' value='Video 1' onclick="ShowHide('1')" />
<input type='button' id='vid2' value='Video 2' onclick="ShowHide('2')" />
<input type='button' id='vid3' value='Video 3' onclick="ShowHide('3')" />
<input type='button' id='vid4' value='Video 4' onclick="ShowHide('4')" />

<div id='divplayer1'> //video </div>
<div id='divplayer2'> //video </div>
<div id='divplayer3'> //video </div>
<div id='divplayer4'> //video </div>



parang ganayan...

NOTE: hindi tested yung script... pero something ganyan lang yung gagawin.
 
Back
Top Bottom