in reply to CGI param returns HTMLInputElement.

I use Firebug (Firefox extension) to get insight...

It is a great helper when progamming ajax. It even includes a JavaScript debugger.

  • Comment on Re: CGI param returns HTMLInputElement.

Replies are listed 'Best First'.
Re^2: CGI param returns HTMLInputElement.
by holli (Abbot) on Oct 01, 2007 at 12:07 UTC
    sadly, Firebug/Firefox are too forgiving.

    E.g., a statement like
    var foo = { bar : 'baz', };
    runs perfectly in FF but not in other browsers (the last comma is wrong). This is especially annoying when you come from Perl and are even encouraged to write you hashes like
    $foo = { bar => 'baz', };


    holli, /regexed monk/
Re^2: CGI param returns HTMLInputElement.
by lanta (Sexton) on Oct 02, 2007 at 11:56 UTC
    Thanks stark, it looks pretty slick, I guess now I can stop using all those alert() ;-)