custom submit buttons for forms
  • How can I use a custom "submit" button for forms ?

    When I change the 

    <input type="submit" name="f_submit_comment" id="article_comment_submit" value="submit" tabindex="6" />

    to 

     <input type="button" class="button" name="f_submit_comment" id="article_comment_submit" value="" tabindex="6" onclick="form.submit()"/>

    does not submit the form ? Why ?