vote up 0 vote down star
<script type="application/javascript" language="javascript">
    function showElement(elementID, show){
    var element = document.getElementById(elementID);
    if (element) {
      element.className = (show ? element.className.replace(/hidden/gi, "show") : element.className + " hidden");
     }
    }
</script>

        <table cellpadding="3" cellspacing="1" border="0" width="100%">  
            <tr class="baseGrayMedium">
                <td colspan="2">
                    (<a href="javascript:void(0);" onClick="showElement('evicChkLst',true);" class="nostyle">+</span></a>|<a href="javascript:void(0);" onClick="showElement('evicChkLst',false);" class="nostyle">-</span></a>) &nbsp;&nbsp; <B>Eviction Checklist</B>
                </td>
            </tr>
        </table>

i get the javascript error saying object expected and it points to onClick event in the HTML code.. Could some one suggest me why so

flag

6 Answers

vote up 0 vote down
function showElement(elementID, show){ var element = document.getElementById(elementID); if (element) { element.className = (show ? element.className.replace(/hidden/gi, "show") : element.className + " hidden"); } }
        <table cellpadding="3" cellspacing="1" border="0" width="100%"> 	
            <tr class="baseGrayMedium">
                <td colspan="2">
                    (<a href="#" onclick="javascript:showElement('evicChkLst',true);" class="nostyle">+</span></a>|<a href="#" onclick="javascript:showElement('evicChkLst',false);" class="nostyle">-</span></a>) &nbsp;&nbsp; <B>Eviction Checklist</B>

				</td>
            </tr>
        </table>

now the code looks some thing like the above

link|flag
This might be better as an edit to your question -- this definitely isn't an answer on its own. – Jonathan Lonowski Nov 4 at 19:55
vote up 1 vote down

Your probelm is: <script type="application/javascript" language="javascript"> it must be <script type="text/javascript" language="javascript">

link|flag
Thanks it works i didnt see that cool – krishna Nov 4 at 19:56
vote up 0 vote down

I don't immediately see anything wrong in your snippet.

It's possible that formatting elsewhere in your script has messed up the definition or scope of showElement. Try adding this link next to the others:

<a href="javascript:void(0)" onclick="alert(typeof showElement);">?</a>

It should alert function if everything up to that point is good (or, at least, not alert undefined).

link|flag
ok it says undefined on clicking ? – krishna Nov 4 at 19:47
what could be the reason? – krishna Nov 4 at 19:48
vote up 0 vote down

Check that link

link|flag
it didnt work either.. it shows the same object expected error. The code works fine in firefox though – krishna Nov 4 at 19:44
any more suggestions... I replaced the javascript:void thing to # – krishna Nov 4 at 19:45
yes i removed the void already and replaced it with #... I see the microsoft script editor pointing to the onclick event in debugging – krishna Nov 4 at 19:51
See my other answer – Gregoire Nov 4 at 19:54
vote up 0 vote down

No it didnt work though i prepended "javascript:" to the onclick event.. Any more suggestions ?

link|flag
try to replace javascript:void(0) by # – Gregoire Nov 4 at 19:38
vote up -1 vote down

try prepending "javascript:" to the onclick event ("onclick" all lowercase is xhtml compliant btw).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.