Одна из моих веб-страниц содержит несколько форм с одинаковыми элементами под другим идентификатором формы, например
<form method="post" action="" style="" enctype="application/x-www-form-urlencoded" id="comment-form-1">
<textarea rows="1" cols="45" id="body" name="body" ></textarea>
<button class="post-comment-sml" type="submit" id="submit" name="submit"></button>
</form>
<form method="post" action="" style="" enctype="application/x-www-form-urlencoded" id="comment-form-2">
<textarea rows="1" cols="45" id="body" name="body" ></textarea>
<button class="post-comment-sml" type="submit" id="submit" name="submit"></button>
</form>
---
<form method="post" action="" style="" enctype="application/x-www-form-urlencoded" id="comment-form-n">
<textarea rows="1" cols="45" id="body" name="body" ></textarea>
<button class="post-comment-sml" type="submit" id="submit" name="submit"></button>
</form>
Здесь я могу заменить все кнопки отправки в форме вариаций обычным типом кнопки следующим образом
<form method="post" action="" style="" enctype="application/x-www-form-urlencoded" id="comment-form-1">
<textarea rows="1" cols="45" id="body" name="body" ></textarea>
<button class="post-comment-sml" type="button" id="submit" name="submit"></button>
</form>