Quote:
|
Originally Posted by falsepride
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="";
|
Is that a typo?
You have ogj instead of obj.
Also, the next time you ask for help with an error, it helps to post what the error
is.