Questions tagged [.post]

A jQuery wrapper for an AJAX call using the HTTP POST method to send 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.

Docs

273 questions
0
votes
2 answers

$.post json request doesn't return any result

Well, another try: this is all the jquery code i'm using maybe i made something wrong in the code before $.post(); i call the following function with the onclick of the same form... function setLogin() { $('#login-form').submit(function(e) { …
Antonio Ciccia
  • 726
  • 3
  • 8
  • 18
-1
votes
1 answer

$.post not returning data

I'm very new at jquery and I think I don't fully understand what I'm doing yet. I'm trying to retrieve data from my db without reloading my page by doing so: $('.add-team-member').click(function(e) { e.preventDefault(); …
Cellendhyll
  • 63
  • 1
  • 1
  • 11
-1
votes
2 answers

How to pass a PHP Array into jQuery AJAX $.post

Objective: I have php array variable, and I need to put this array ($key and $value) into the jQuery AJAX $.post, and send it to another php(next.php) page. PHP array Variable: $issue['key01']='value01'; $issue['key02']='value02'; jQuery Ajax: …
BSS
  • 53
  • 2
  • 9
-1
votes
2 answers

get $_post in laravel from javascript $.post

I have an html with a script that is like so (btw, HAVe to use old fashioned post in my html for reasons)... @extends('layout') // ... includes for jquery and ajax