Is anyone able to tell me please why clicking on this in an HTML page
<a onclick="addRow(); return false;" href="#">Add Row</a>
causes addRow to be called, but this
<input id="addRow" type="button" value="Add Row" onclick="addRow(); return false;" />
does not?
(I want a button which calls addRow.)
hrefon an<input>is valid, I would remove it. Also is that input item in aform?