What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » JavaScript IE Incompatiblity

JavaScript IE Incompatiblity
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: JavaScript IE Incompatiblity
quote:
Originally posted by lordy
quote:
Originally posted by Matty
Throw the text box for the MSN address into a DIV give it an ID when they click Yes, document.getElementById('id').style.display = ''; if they click no document.getElementById('id').style.display = 'none';

both would be onClicks
But you can't have individual table rows in a div can you?
It will work take this for an example

or this
code:
<script>
    function hideshow(id){
        if (document.getElementById(id).style.display == ''){
            document.getElementById(id).style.display = 'none';
        }else{ document.getElementById(id).style.display = ''; }
    }
</script>

<input id="hideme" />
<input onclick="hideshow('hideme')" type="button" value="hide show"  />

.html File Attachment: 1.html (440 bytes)
This file has been downloaded 126 time(s).

This post was edited on 07-03-2006 at 04:58 AM by matty.
07-03-2006 04:57 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
JavaScript IE Incompatiblity - by lordy on 07-03-2006 at 04:30 AM
RE: JavaScript IE Incompatiblity - by matty on 07-03-2006 at 04:34 AM
RE: JavaScript IE Incompatiblity - by kotjze on 07-03-2006 at 04:34 AM
RE: JavaScript IE Incompatiblity - by lordy on 07-03-2006 at 04:44 AM
RE: JavaScript IE Incompatiblity - by matty on 07-03-2006 at 04:57 AM
RE: JavaScript IE Incompatiblity - by lordy on 07-03-2006 at 04:59 AM
RE: JavaScript IE Incompatiblity - by ShawnZ on 07-03-2006 at 05:06 AM
RE: JavaScript IE Incompatiblity - by lordy on 07-03-2006 at 05:16 AM
RE: JavaScript IE Incompatiblity - by ShawnZ on 07-03-2006 at 05:16 AM
RE: JavaScript IE Incompatiblity - by lordy on 07-03-2006 at 05:19 AM
RE: JavaScript IE Incompatiblity - by matty on 07-04-2006 at 10:10 PM
RE: JavaScript IE Incompatiblity - by lordy on 07-04-2006 at 11:35 PM
RE: JavaScript IE Incompatiblity - by matty on 07-05-2006 at 01:17 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On