The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
|||
|
|||
![]()
That wouldn't work. I'm switching between about 6 divs, and it seems wasteful to check the state of each div when I can just use a variable.
I simplified it, sorry, kinda used to going overboard when coding (other language). Really don't like to use specifics. Code:
var hcur='logo'; function switchheader(id){ if ( hcur != id ){ document.getElementById(hcur).style.display = 'none'; document.getElementById(hcur + 'b').src = '/styles/7M-v1/new/hb_' + hcur + '.png'; document.getElementById(id).style.display = ''; document.getElementById(id + 'b').src = '/styles/7M-v1/new/hb_' + hcur + '_alt.png'; if (hcur == 'logo'){ document.getElementById('logo2').style.display = 'none';} if (id == 'logo'){ document.getElementById('logo2').style.display = '';} hcur = id; } }
If the new id is not equal to the current id (why switch to the same?), then continue with the switch, else do nothing. Hide the current div, and switch the current button back to default. Then show the new div, and switch the new button to alternate. If the past id was logo, hide the extra div. If the new id is logo, show the extra div. Set hcur to the new id as it is now the current, and end function. |
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|