Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

how to make the <a> link </a> tag work with a submit button?

how to make the <a> link </a> tag work with a submit button?
right now send data with a form, but I also need the <a> link </a> link to work

My code only works the submit button

<form method="POST" action="{{ route('enviado') }}">
                                 @csrf
                                 <input type="hidden" name="id" value="{{$hoy->id}}">
    <a href="https://api.whatsapp.com/send" target="_blank"> <button type="submit">Send</button></a>
     </form>

help pls

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Perhaps you can try removing the <a> tag and just use this on your <form> tag

<form method="POST" action="{{ route('enviado') }}" onsubmit="window.open('https://api.whatsapp.com/send', '_blank');">
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading