I needed help to pass any value of one of these inputs
via Ajax or jQuery:
<input type="radio" id="valorum" name="valor" value="38,70" ></br>
<input type="radio" id="valordois" name="valor" value="71,40" ></br>
<input type="radio" id="valortres" name="valor" value="118,80" ><br><br>
$.ajax({
method: "GET",
url: "test.js",
dataType: "script"
});
How would I spend one of these values
within this Ajax? Or is there no way, or is there another method of doing this?