simaskra.is aðferðin er rusl. Prufaðu eitthvað á þess leið. <html> <head> <script> function showhide(id){ if (document.getElementById){ obj = document.getElementById(id); if (obj.style.display == "none"){ obj.style.display = ""; } else { obj.style.display = "none"; } } } </script> </head> <body> <a href="#" onclick="showhide('1'); return(false);">Show 1</a>, <a href="#" onclick="showhide('2'); return(false);">Show 2</a>, <a href="#" onclick="showhide('3'); return(false);">Show 3</a>, <a...