24.06.2007, 13:32
dan machs am besten mit php... im quellcode vom menü macht zwar arbeit wird aber gehen...
so siehts ja für id="1" aus...
machs zu
[code=php]<?php if($_GET['id'] == "1"){echo'<div id="1" style="display:block;">';}else{echo'<div id="1" style="display:none;">';} ?>[/code]
Und das bei jeder
EDIT.
mach am besten nur.
das none löschen
[code=php]<?php if($_GET['id'] == "1"){echo'block';}else{echo'none';} ?>[/code]
ist etwas kürzer
Code:
<div id="1" style="display:none;">
so siehts ja für id="1" aus...
machs zu
[code=php]<?php if($_GET['id'] == "1"){echo'<div id="1" style="display:block;">';}else{echo'<div id="1" style="display:none;">';} ?>[/code]
Und das bei jeder
EDIT.
mach am besten nur.
Code:
<div id="1" style="display:none;">
das none löschen
Code:
<div id="1" style="display:......php......;">
[code=php]<?php if($_GET['id'] == "1"){echo'block';}else{echo'none';} ?>[/code]
ist etwas kürzer