vote up 0 vote down star

How would I do this in jquery? I would like to post data, process, and then retrieve the page that is generated by that data.

All I can find are seperate just post. or just retrieve data.

flag

57% accept rate
Do you an ajax request or just force a normal form submission? – smack0007 Oct 12 at 8:07
What would happen is almost like a dynamic search. where the user would submit the search form and the result will dynamically show below. – wnoveno Oct 12 at 8:11

3 Answers

vote up 1 vote down check

You might as well try this example:

Client Side:

Search: <input type="text" id="criteria" />
<button id="searchButton">Go</button>
<div id="results">
</div>

<script>
    var q = $('#criteria').val();    
    $.post('search.php',{'query':q},function(result){
        $('#results').html(result);
    });
</script>

Server Side(search.php):

<?php        
    $q = $_ POST['query'];
    //do some query on db
    //display the results
    //do some print
?>
link|flag
vote up 6 vote down

jQuery has the jQuery.post method to do that:

jQuery.post(
    'http://example.com/…',
    {/* post data of key-value pairs */},
    function(data, textStatus) {
        /* callback function to process the response */
    }
);
link|flag
vote up 4 vote down

To post the data you use $.post. The return value would be in the first parameter of the calback function.

For example:

$.post('urlToPostTo', null, function(data){
   alert(data);
}

This will show the returned data from the server in an alert box.

link|flag

Your Answer

Get an OpenID
or
never shown

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