Posts by Fábio Espíndola • 3 points
4 posts
-
0
votes2
answers2717
viewsQ: Pick user input value with jQuery
Hello! Here’s the thing, in my form, I’m trying to get the value typed by the user in the input way below: // jQuery function teste() { var nome = $("#nome").val(); alert(nome); } // HTML <form…
-
0
votes2
answers1091
viewsQ: jQuery: . val() in select only returns the value of the first option
I have a select element in my html page (code below): <section class="calc-tit-desc" id=""> <h3 id="calc-tit">Calculando Para Diarista Por Hora</h3> <p id="calc-desc">Calcule…
-
0
votes1
answer656
viewsQ: Select dynamically inserted HTML elements with Javascript
I’m developing a kind of calculator, where the client puts some information listed in "select" elements and calculates the value of the service to be hired. In this calculator, there is the option…
-
0
votes1
answer175
viewsQ: Sending email using phpmailer
I am trying to send an email with several variables passed via post. I cannot send the content of the email with all variables. What would be the correct syntax? Below is the code: $name =…