<form id="add" action="/add" method="POST">
<input type="text" name="firstname">
<input type="text" name="lastname">
<input type="email" name="email">
<input type="submit" id="sendButton" style="display: none;" />
</form>
$(".add").click(function(){
$("#sendButton").click();
});
.example {
border: 1px solid black;
}
<div class="example">
черная граница вокруг меня
</div>