Jump to content
php.lv forumi

showhide()


SkyD

Recommended Posts

Šitam JS kodam vajag piesastiit klaat taadu lietu kaa:

ja atver valjaa kategoriju x, tad kaada no atveertajaam kategorijaam x, tiek aizveerta, un parādās jaunās kategorija x.

Piem. atveru kategoriju - auto, peectam veru valjaa kategoriju - sunji, un tad lai kategorija - auto pazuud.

 

Palīdziet! :)~~

Link to comment
Share on other sites

Eh... kur cilvēki nevar tik elementāras lietas izdomāt..

var last = false;
function showhide(kastiesi)
{
 if (last) last.style.display = "none";
 var id = document.getElementById(kastiesi);
 last = id;
 id.style.display = (id.style.display=="none" ? "block" : "none");
}

Link to comment
Share on other sites

×
×
  • Create New...