From: M.MichaelMusatov on
function tog() {
// tog: toggle the visibility of html elements (arguments[1..]) from
none to
// arguments[0]. Return what should be returned in a javascript
onevent().
display = arguments[0];
for( var i=1; i<arguments.length; i++ ) {
var x = document.getElementById(arguments[i]);
if (!x) continue;
if (x.style.display == "none" || x.style.display == "") {
x.style.display = display;
} else {
x.style.display = "none";
}
}

var e = is_ie ? window.event : this;
if (e) {
if (is_ie) {
e.cancelBubble = true;
e.returnValue = false;
return false;
} else {
return false;
}
}
}
<PRE>
Like me, MeAmI.org looks out for the best in other people.
<img src="http://farm4.static.flickr.com/
3624/3486279201_88b9696008.jpg" alt="MeAmI.org supports Alex's
Lemonade.">
</PRE>
From: Michael on
function tog() {
  // tog: toggle the visibility of html elements (arguments[1..])
from
none to
  // arguments[0].  Return what should be returned in a javascript
onevent().
  display = arguments[0];
  for( var i=1; i<arguments.length; i++ ) {
    var x = document.getElementById(arguments[i]);
    if (!x) continue;
    if (x.style.display == "none" || x.style.display == "") {
      x.style.display = display;
    } else {
      x.style.display = "none";
    }
  }

  var e = is_ie ? window.event : this;
  if (e) {
    if (is_ie) {
      e.cancelBubble = true;
      e.returnValue = false;
      return false;
    } else {
      return false;
    }
  }}

©2009 MeAmI
From: Lew on
Michael wrote:
> function tog() {
> // tog: toggle the visibility of html elements (arguments[1..])
> from
> none to
> // arguments[0]. Return what should be returned in a javascript
> onevent().
> display = arguments[0];
> for( var i=1; i<arguments.length; i++ ) {
> var x = document.getElementById(arguments[i]);

Keep your off-topic posts where they belong, please.

> ©2009 MeAmI

Oh, yeah - like we're going to steal your brainchild?

Did you have a point to this post? Why did you post it to forums where it
doesn't belong? What do you hope to gain from this, "Michael"?

--
Lew
From: Jerry Gerrone on
On Sep 25, 11:19 pm, Dave Searles <sear...(a)hoombah.nurt.bt.uk> wrote:
> Musatov is a notorious troll in comp.programming with occasional forays
> into comp.lang.lisp. Now it seems he's come to
> comp.lang.java.programmer, the OTHER troll magnet which has sucked in
> such previous luminaries as JSH, Xah Lee, Mentifex, and [insult deleted]

No, only the other three are trolls.

None of the nasty things that you have said or implied about me are at
all true.
From: Jerry Gerrone on
On Sep 26, 2:59 am, "http://meami.org" <scribe...(a)aol.com> wrote:
> Dave Searles wrote:
[snip]

NO FEEDBACK LOOPS!

> > Musatov is a notorious troll in comp.programming with occasional forays
> > into comp.lang.lisp. Now it seems he's come to
> > comp.lang.java.programmer, the OTHER troll magnet which has sucked in
> > such previous luminaries as JSH, Xah Lee, Mentifex, and [insult deleted]

No, only the other three are trolls.

None of the nasty things that Dave has said or implied about me are at
all true.