2
I have a page that has several inputs, when I click on the button I open a modal with the result and inside dese modal I have another button to be clicked but I need to take the form fields and pass to the other page.
My detail button code is like this:
<div><center><a href="detalhado.html" class='btn modal-action modal-close red'><strong><i class='mdi-content-add'></i> Detalhado</a></center></strong>
Here I needed to pass the values of the sample inputs: href="detailed.html? value=100000&months=24&rate=14.15"
you already tried using jquery? , example: var name = $('#form01 #name'). val(); $('. modal #fieldName'). val( name );
– Wilson Rosa Gomes
But how would I do it passing Href?
– William