Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
100 views

Looking for syntax guidance on implementing AJAX project

I am taking on my first AJAX project and conceptually have everything mapped out for the most part but am being held back due to my lack of knowledge syntactically. I think I also might be off the ...
3
votes
3answers
152 views

PHP and jquery: waiting for $.post

I have a jquery function, doing a $.post of a value to a php function. This php function then puts this value in the $_SESSION and shows the appropriate content. I would like that the execution does ...
3
votes
4answers
868 views

jquery $.post - json - proper way to send/receive input data (on the client side only) - A Two Questions Quest

Let's imagine that we have something like: $.post('somescript.php', 'WHAT CAN WE PUT HERE?', function(replyData) { 1) By default, the third argument of $.POST method, will read the ...
3
votes
5answers
20k views

jquery $.post empty array

I'm using jQuery to post a form to a php file, simple script to verify user details. var emailval = $("#email").val(); var invoiceIdval = $("#invoiceId").val(); $.post("includes/verify.php", ...
2
votes
1answer
51 views

Why isn't my callback function for this Jquery .post working?

Here is the code for the jquery: <script type="text/javascript"> $(document).ready(function(){ $('#room').submit(function(){ $.post('backend/CreateRoom.php', ...
2
votes
4answers
88 views

Trouble with $.post

I am trying to insert some values into an sql database. I am using <input type="text" name="message" id="message" /> <input type="image" src="boca.png" onClick="send();" /> to get the ...
2
votes
2answers
78 views

Why can't I get my JSON Data posted using AJAX in my PHP file?

I have an AJAX script that post data in one of my PHP file: var _lname = $('#ptLastName').val(); var _fname = $('#ptFirstName').val(); var _mname = $('#ptMiddleName').val(); $.ajax({ ...
2
votes
2answers
56 views

Trying to pass variable from $.post to php

I have one big file (for right now) that is supposed to: take a variable from a select widget in a form (jQuery) submit the form asynchronously (jQuery) return records from a database using the ...
2
votes
6answers
109 views

Will jQuery $.getJSON() Do What I Need?

I have been trying to write a script where I can post data to a page that is on a different domain than the domain the source page. I read all about the issues with doing that, and information has led ...
2
votes
3answers
85 views

issue with jquery .post() not working

so I am new to using jquery .post() however I am not using methods i haven't already used before. I am trying to post two hidden input values when a button is clicked: $('#button').live('click', ...
2
votes
2answers
2k views

Is it possible to check timeout on jQuery.post()?

I have this code requesting some folder info from a mysql DB: function gotoDir(pmcat_id, pcat_id){ $('#slideshowContainer').html('<img class="loader" src="/javascript/ajax-loader.gif">'); ...
2
votes
1answer
304 views

Passing an array back to the server using JQuery .post()

There are loads of questions and answers regarding the issue of posting arrays back to the server using jquery. However I cant seem to find any solutiion to the problem I'm having. Basically the code ...
2
votes
1answer
386 views

Textarea $.post as undefined

Using jquery I'm trying to post textarea content back to a php backend. I can successfully alert out the textarea content, however when I use the $.post, firebug shows it as 'undefined'. The post ...
1
vote
3answers
50 views

making AJAX calls from javascript to php using jquery

Works: function jsUpvote(photo_id, username) { //var getURL = "http://www.uglyfacez.com/gallery/upvote.php?photo_id=" + photo_id + "&username=" + username; ...
1
vote
2answers
62 views

jQuery $.post concern

As you all know, the $.post function for jQuery is quite awesome, but the problem I have with that is the person who views the source of the page can view where the data is going, thus moving towards ...
1
vote
2answers
74 views

$jquery.post() PHP and Mysql

So I half got jQuery's ajax ($.post) to work. But, for some reason, I haven't been successful with finding the right online article to explain to me how PHP retrieves the ajax data that is sent. I've ...
1
vote
4answers
44 views

send $.post() one at a time (“adding a pause” but really: toggling a 'transmit' flag)

in jQuery, I iterate over an xml list of areas and do a POST request to get detailed information about each area. Because sending thousands of requests at once is debilitating for the client and ...
1
vote
2answers
262 views

jquery e.preventdefault not working inside $.post

Hi i'm try to check if a title in a form already exists in a database. My Code does a $.post and gets back the data but it doesn't stop with the e.preventDefault(); or on return false. ...
1
vote
1answer
58 views

Access and use $.post results easily?

Im trying to create a page in which users can search for items on the left side of the page, and drag and drop the items they want onto the right, kind of like a shopping cart. I have been using ...
1
vote
2answers
131 views

jQuery $.post doesn't pass what button were pressed

Recently I've stuck with a problem where $.post does not send information about button which were pressed. I.e. we have a form with two buttons. <form method="post" action="/home/index"> ...
1
vote
3answers
92 views

posting an array using JQuery .post()

so I am rather new to the whole .post() experience with jquery. I have only experience POSTing input values so far. What I want to do is POST an array. which is a standard array of a list of ...
1
vote
2answers
164 views

JQuery $.post & php 'if' statement stops working

This is pretty specific and I have not found an answer yet. I am writing a script to check if a name is already input into the SQL server using JQuery $.POST. The front end looks like this: ...
1
vote
4answers
81 views

Simple question about $.post and a PHP sum

I have a jQuery $.post function sending data to a PHP file which updates a DB field, grabs 1 of the values being sent to the file, adds '1' and returns the new value. My PHP file looks as follows: ...
1
vote
0answers
40 views

How can i validate formfields which are loaded into a $.post div?

I am using validation.php by benjaminkeen to validate a form. The catch is i have stage3.php which loads two different forms base on selection. And i have the opening tag and closing tag in ...
1
vote
4answers
1k views

Jquery .post() return array [PHP]

Sorry for the bad title, but I don't know how to name this. My problem is that whenever I pass a value from a select box I trigger this jquery event in order to check on the check boxes. Bassically I ...
1
vote
2answers
607 views

using jquery $.post() for returning multiple values

I am trying to use a $.post() in the following way: $.post("file.php", { file_id: $(this).val()}, function(data){...} The file.php then does a database query and returns an array with a title, ...
1
vote
3answers
260 views

passing data from javascript to php using Jquery

Maybe this question has been asked before but I am struggling in doing this. I have got a php file which does not include any piece of php code (might be in the future),it includes just javascript ...
1
vote
2answers
76 views

How To (Effectively) use jQuery to Match the Value of an Input with a Database?

I've been working on a PHP project of mine, and I am attempting to add a feature that tells the user whether or not the username they entered in a register form is already taken as they update the ...
1
vote
1answer
1k views

jquery $.post second argument. - json or query string?

$.post('somescript.php', { data: $('#myInputField').val() },     function(replyData) { 1) Is the second argument of this $.post method - in json? OR 2) Is the second argument of this $.post method ...
1
vote
3answers
588 views

Help on Understanding jQuery $.post - w/ code sample

$.post('testeUpdate.php', 'autocomplete', function(dadosResposta) { $('#ns-nome').val(dadosResposta.nsName); $('#ns-endereco').val(dadosResposta.nsAddress); }, ...
1
vote
4answers
664 views

Posting screen width using jQuery

Using this code var sw = window.screen.width; $.post("http://www.example.com/track.php", {result: sw }, "html"); and $_SERVER['result']; in the server I'm trying to get the sreen width but it does ...
1
vote
2answers
737 views

jquery sending cross domain data via A $.post

I am trying to send data over to a cakephp (mvc) website, via $.post(). below is the code $('#testReq').click(function(){ console.log('Button Works'); ...
0
votes
0answers
18 views

Jquery .post and Codeigniter issue

I am trying to use $.post to send the data to Controller and receive the returned data. I use project_detail/pub as my designated url and want to return $go from the controller. However, The returned ...
0
votes
0answers
24 views

$.post loading issue in ajax

In ajax even though i am returning 1 and 0 as return value there is loading issue. $.post("php/phpCallBack/useravailCheck.php",{Username:username},function(returnData){ if(returnData==1){ ...
0
votes
2answers
49 views

jQuery .each() and jQuery .post()

I've been trying for about a day now to get this method to work. I'm trying to use the jQuery .each() function to perform an action for each element in a given array. The array comes from a .post() ...
0
votes
1answer
58 views

jQuery $(“#form”).submit not working in FF and Chrome (works OK in IE)

I've seen this same problem discussed elsewhere, but none of the fixes I've found so far solve my paticular problem: I'm using $.post inside $(#form).submit to submit the form via AJAX so the user ...
0
votes
0answers
48 views

IE does not load content after jquery's .post() data request

Althought i'm just a graphic designer, sometimes i do my own programming. Right now i've been commissioned for the design and programming of a simple website http://www.cervigonyachts.com. I've ...
0
votes
2answers
34 views

jQuery .on not recognising urls from jQuery $.post

My script below generates a url if the $.post() response has an error. I am trying to use .on() so that I can attach a function to the URL generated, but it does not work. When I add the URL in the ...
0
votes
2answers
76 views

jQuery TypeError: 'undefined' is not a function on AJAX submit

Does anybody see a problem with the following? jQuery(document).ready(function($) { $("#ajax-form").submit(function(e) { e.preventDefault(); ...
0
votes
1answer
49 views

How to utilize the browser back button with AJAX requested dynamic content

I have asked a question like this before, and the answer was great but the more I looked at my code the more confused I got, and after 10hrs my brain is shot and I'm in need of help. So all my content ...
0
votes
3answers
50 views

jQuery $.post returned data

I'm having some issues on how to use the data returned by jQuery's $.post function. I'm trying to test if a picture exists on my server or not. Here is the javascript : $.post("ajax_test_file.php", ...
0
votes
1answer
77 views

Pass javascript array to server using jquery .post on submit and then print array in PHP?

HTML: <form id="continue" action="summary.php" method="post"> <input type="submit" value="Continue" > </form> JS/JQuery $('#continue').submit(function(){ var data = ["jon", ...
0
votes
4answers
58 views

Get value of html elements form a jquery $.post() data

I have some pages that i acces by jquery $.post like this: $.post(url, {name: name}, function(data) { var htmldata = $(data); if($('#ok', htmldata).val() == "1") { //some things ...
0
votes
2answers
63 views

JQuery $.post Variable Post Name

I'm having an issue with the jquery post() function. I have several buttons and am using a single post function to handle all the buttons. I can't seem to get the variable post name to work. my code ...
0
votes
0answers
95 views

Unable to retrieve json results using jquery $.post

I need to use jqueries $post method and retrieve the json results. I've had success using the $.getJSON method like so: $.getJSON("test_file.php", $("#test_file_form_id").serialize(), ...
0
votes
1answer
164 views

Need to return recaptcha response while using AJAX, jQuery .submit on button, and keep serialized data intact

I've looked everywhere and have tried 10 different similar issues but neither works exactly how I need it to. I have a simple form with validation using validationEngine (and this works fine, it ...
0
votes
0answers
50 views

LAMP Error Logs? LAMP limits on $.post?

Kind of a 2 part question... though an answer to either would be helpful. 1) Does a LAMP system have different error logs for? 1 - php 2 - mysql 3 - http I am trying to trouble shoot a jQuery ...
0
votes
2answers
227 views

jQuery $.post() + IE8

<script type="text/javascript" src="/scripts/jquery-1.6.2.min.js"></script> <script type="text/javascript" src="/scripts/jquery.form.js"></script> <script ...
0
votes
3answers
39 views

Jquery ajax not refreshing in modal

I'm using a fancybox modal to display comments from a news page pulled from a mysql database. The modal also has a section that allows users to post new comments. I'm using jquery to send the form ...
0
votes
2answers
74 views

Ajax passing data to php script

Hi I am trying to send data to my php script to handle some stuff and generate some items. $.ajax({ type: "POST", url: "test.php", data: "album="+ this.title, success: function(response) { ...

1 2