Hello i want in the moment i select a value to post to the process.php page . I have this code:
<select name="sweets" id="sweets" >
<option value="1">Chocolate</option>
<option value="2">Taffy</option>
<option value="3">Fudge</option>
<option value="4">Cookie</option>
and jquery:
$("#sweets").change(function () {
var str = "";
$("select option:selected").each(function () {
str += $(this).val() + " ";
var q = $(this).val();
var dataString = 'q=' + q;
});
$("div").text(str);
$.ajax({
type: "POST",
url: "process.php",
data: dataString,
success: function() {
$('#form').slideUp('slow');
}
})
})
.change();
and i can't make it post the value to process.php.
Any help is appreciated,
thank you