Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

1 Answer

up vote 1 down vote accepted

You're declaring dataString in an odd spot, but you can get the .val() of the <select> directly much easier, like this:

$("#sweets").change(function () {
  $("div").text($(this).val());
  $.post("process.php", { q: $(this).val() }, function() {
    $('#form').slideUp('slow');
  });
}).change();

In the above I also converted your code to use $.post() just as a shortcut, but it has the same effect.

share|improve this answer
Thank you Nick , i run your example on local and looking with Fireboog doesn't seem to post .. could you take a better look .. i'm begginer with Jquery thank you – Teodor Nov 2 '10 at 20:48
@Teodor - are you running this inside a ready handler, e.g. all of the above wrapped in $(function() { /* code */ });? – Nick Craver Nov 2 '10 at 20:50
Actually i put the file online to show you and online seems to work in both cases with and without document ready :) thank you .. something strange on local :) – Teodor Nov 2 '10 at 20:54
Nick i added the example at : tourscript.com/test/test_sort2.html now my problem is: i already post this on the process page but how i gater back the result of the process page? – Teodor Nov 2 '10 at 21:13
i wanted to do something like w3schools.com/ajax/ajax_database.asp but in jquery – Teodor Nov 2 '10 at 21:14
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.