jquery on click trigger another element code example
Example: jquery trigger click other element
<script>
$(document).on('click', '#contact', function() {
$("#contattaci").click();
});
</script>
<script>
$(document).on('click', '#contact', function() {
$("#contattaci").click();
});
</script>