Thread: Help!
View Single Post
Old 11-03-2004, 01:45 PM   #1 (permalink)
falsepride
Regular Contributor
 
Join Date: Oct 2004
Posts: 209
falsepride is on a distinguished road
Help!

can anyone help me with the error in this script? i posted all of the parts that are needed bellow.
<script type="Javascript">
function toggle(objid){
var obj = document.getElementById(objid);
if (obj.style.display == "none") {
ogj.style.display="";
} else {
obj.style.display = "none";
}
}
</script>
<a href="#" onclick="toggle('news')">fgfgfg</a><div id="news" style="display:none">hjklkljklkl</div>
falsepride is offline   Reply With Quote