The jQuery command $.post is used to "post" PHP variables asynchronously from the current page without reloading or leaving the current page. Data can then be retrieved from the request and used on the current page.
Questions tagged [jquery-post]
196 questions
1
vote
1 answer
How can I pass full form + extra data via jquery $.post?
I send data with my form through jquery $.post to some PHP page, but now i want to add some extra data to this sent package.
Here is my code:
$.post("/settings/filter", $("#filter_form").serialize() , function(data,status,xhr)
{
…

pawel
- 5,976
- 15
- 46
- 68
1
vote
1 answer
Jquery Post() not posting
The post values are not passing to the action page. Action page is returning only the static reply i.e. Thank you message without the $_POST part.
Below are the codes.
JQuery