onClick="CallMultipleFns" only invokes first function

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • RichardOnRails

    onClick="CallMultipleFns" only invokes first function

    Hi All,

    I put up a toy webpage to test the use of various javascript
    functions, etc.:


    It has three links:

    #1 clears a Trace area and adds three lines

    #2 appends another line

    #3 invokes functions 1 & 2 (with their respective arguments), but it
    only presents the results of #1. It seems as though #2 never gets
    invoked.

    I tested this in both Firefox2 and IE7, as well my IDE, Aptana.

    Did I make some dumb mistake, as usual :-( ?

    Thanks in Advance,
    Richard

    P.S. I posted a version of this question on JavaScript Forum, but it
    has very low traffic and waits upon moderator-review before actually
    posting anything. I prefer this forum.

  • RichardOnRails

    #2
    Re: OT - Re: onClick="C allMultipleFns& quot; only invokes first function

    Hi Chris,

    Thanks for your excellent help.
    Line 68 is:
    var iCount = arElements.leng th
    This fails because arElements is not defined. [snip]
    That was my stupid mistake: I had fooled around with this code so
    much that I left trash on the bottom. I excised it all, and it ran as
    expected.
    In Firefox:
    Tools
    Error console
    >
    will show you any JavaScript parsing or execution errors. This is where
    to start looking for this sort of thing.
    I didn't know that. Thanks for that heads-up.

    I didn't think of it, because I haven't used it much, but I should
    have run this with Firebug enabled. That was another stupid mistake.

    Best wishes,
    Richard

    Comment

    Working...