Quote:
Originally Posted by tgreer
Some JavaScript would work. Are you a JS coder? The idea is to add "onclick=" to each of your tabs. Set it to a JavaScript function:
onclick=myFunction(this.id);
Your function now knows the id of the tab you clicked. The function would switch the "style" or "class" of that tag to "active", and to all the others to "inactive".
Voila!
|
Well, the tabs are reloaded with the whole page each time you press on a link. So that wouldn't really work.
And no, I'm not a javascript coder.