Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
230 views

How to show jQuery is working/waiting/loading?

How do I show a loading picture and/or message to the user ? If possible, would I like to know how to make it full screen with grey-dimmed background. Kinda like when viewing the large picture from ...
2
votes
1answer
44 views

jQuery .add() and empty()

<div id="msg_container"> <span> Is this helpful ? </span> <span class="feedback"> <a title="like"> Yes </a> <a title="dislike"> No </a> ...
2
votes
1answer
55 views

How do I get HTTP error response code in Jquery POST

I have a wrapper function used to send requests to a server, I need to do something specific if the server returns a code of 401 and I'm not sure how to get this data $.mobile.showPageLoadingMsg(); ...
2
votes
5answers
62 views

jQuery - check for POST in the URL

Is there any way to check with jQuery for POST within the URL similar to the PHP way? PHP version: if(!empty($_GET)) { // do stuff } Sorry. I mean GET not POST. I'm looking to fetch the URL on ...
2
votes
1answer
176 views

jQuery slideDown and SlideUp within a table doesn't look right

I am having a minor problem with jQuery slideUp and slideDown when I use it in a table. I have html like this (also mainly generated by jQuery but it's not important): <tr ...
2
votes
3answers
191 views

WordPress Custom Query for Most Commented Posts in the Past 7 Days

I'm trying to do a query on wpdb to get the posts commented on most in the past week... Any ideas what I'm doing wrong? $querystr = "SELECT comment_count, ID, post_title FROM $wpdb->posts ...
2
votes
3answers
978 views

$.post() doesn't send data as json but as x-www-form-urlencoded instead

This one is really weird. I've multiple $.post() in the code but there is one dunno why sends the json parameters as x-www-form-urlencoded instead and therefore doesn't work. Here's the code: ...
2
votes
1answer
241 views

Can you use jQuery POST in a Chrome extension?

I'm trying to get my Chrome extension working with the Google Calendar API. However, the way Google has set up the extension sandbox makes anything almost impossible. I can't add the Calendar API ...
1
vote
1answer
30 views

Joining two query_posts codes

How do I join these two codes so that they work? <?php query_posts( array( 'posts_per_page' => 16, 'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1 ), )); ?> and ...
1
vote
3answers
89 views

jQuery Post With Data Returned (json, xml etc) with Google App Engine (Python)

I've done jQuery post successfully. However, in order to get the data returned from server side. Can anyone gives example how this can be done in Google App Engine (Python) using webapp framework? If ...
1
vote
1answer
54 views

Passing in parameters to jQuery .click

I have a list, populated from rows in a MySQL database and I want to flag those rows in the database when the link is clicked, using jQuery .click and .ajax by triggers a PHP script and passing in the ...
1
vote
1answer
222 views

django csrf fails at production server

I was working on my development server without problems, when I tried it in my production server, in a real name, not localhost nor ip, I got: Forbidden (403) CSRF verification failed. Request ...
1
vote
2answers
572 views

jQuery.post form submit odd bug firefox only

I've search high and low for an answer to this but unfortunately I'm stuck. The problem is only occuring in Firefox (tested IE, Chrome and Safari also - works fine, no errors of any sort). I'll detail ...
1
vote
1answer
348 views

$(document).ready(function() is not working after page refresh in ie6

$(document).ready(function() not working after page refresh in ie 6.Is there any problem to use?Whether it will work in all condition when page load happens...In other browser also? Thank You
1
vote
2answers
182 views

Not able to find file using jQuery.post

I've used jQuery.post in several jQuery scripts now, and it all works fine. But after upgrading to WordPress 3.0, it stoped working. I'm working on a plugin where I hve the following jQuery code: ...
1
vote
2answers
1k views

How do I get my textarea to preserve newlines when using jQuery and JSON?

I have an textarea for user to input comment and a button to submit using jQuery .post() and JSON. $('#submit').click(function () { var comment = {}; comment.Author = ...
1
vote
2answers
274 views

jQuery, PHP, AJAX, “tu” variable beeing posted for no reason, shows in var_dump()

A jQuery AJAX request .post()s data to page.php, which creates $res and var_dump()s it. $res: $res = array(); foreach ($_REQUEST as $key => $value) { if($key){ $res[$key] = ...
0
votes
3answers
55 views

How to continue form submission after an AJAX call?

I want to validate user entries on a WordPress post upon hitting the submit button, display an error message is there are problems, and submit the form if everything is OK. I have a PHP function that ...
0
votes
1answer
19 views

Jquery.post with mvc 3 not return the value

What i try to do is that when a dropdownlist changes i call a jquery.post() method to get the picture using json. Here is the code for it: $.post('@Url.Action("GetImage", "urunler")', { cId: ...
0
votes
2answers
33 views

Deserializing json data from jquery post method directly to string array

Is there a way to deserialize an array sent by jquery post method to directly c# string array(string[])? I tried posting data like this $.post(url, { ...
0
votes
2answers
57 views

How to fail Ajax request in Rails?

When user clicks a specific item, I use jQuery's post method to update something in the database: $.post("/posts/" + post_id + "/update_something", { some_param: some_value }, ...
0
votes
2answers
35 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
59 views

After twice click only jquery is firing for ajax post method

I am using the ajax post method to send values from aspx to php.in that i am calling that ajax method a s funtion in the button click event after inserting the values in the db only i will call the ...
0
votes
2answers
49 views

Jquery returns old value after append

I am submiting a form which adds a new item to a table as well as updates a total value. The form is in a jquery dialog and below is the buttons option specified. buttons: { ...
0
votes
1answer
65 views

Jquery post() - unable to append returning data

I am using the jquery post() for the first time and I can't simply append the returned data. In my case the data is simply a table row from the page which my action calls. I have this ...
0
votes
1answer
80 views

How to serialize multiple checkbox values by jQuery?

I modified the simple example of jQuery.post as $("#searchForm").submit(function(event) { event.preventDefault(); var $form = $( this ), term = $( "input[name^=tick]:checked" ...
0
votes
1answer
63 views

Resend confirmation email questions

I'd like to offer a way for me to "resend confirmation" email to users who have recently signed up for accounts at my site. What is a good way to look up their info and make sure the request came ...
0
votes
2answers
108 views

Jquery with Ajax post not working

I am trying to make a simple game and I'm not very good with jQuery. The code I have is: <script type="text/javascript"> $(document).ready(function(){ $('#deposit').click(function(){ ...
0
votes
2answers
166 views

Post to nodejs and return results

I have been searching for hours on google for away to post from my client js hosted on my site to a nodejs server, than return those results back to my client side. This is an example of what I'm ...
0
votes
0answers
102 views

How to submit multiple checkbox django form widget to backend server using JQuery post [closed]

Possible Duplicate: Jquery and Django multiple checkbox I have a form field defined like this : services=forms.MultipleChoiceField(widget=forms.CheckboxSelectMultiple, choices = [(s.id, ...
0
votes
4answers
37 views

send parameter with jquery ajax

I've a php page and I would to send a jquery ajax request to another page for sending email. This new page accept one parameter and then it executes query ecc... <div id="customer" ...
0
votes
1answer
116 views

First time jQuery $.post takes an extraordinarily long time, subsequent times normal

On a webpage we have the following system of server side form validation. For example, if the user is adding date-details for an event (and an event can contain many such date-details), we call a ...
0
votes
1answer
35 views

How to get list of objects by using jQuery.get or post

I am using jQuery.get/post methods in my Struts2 application. See the following code. This URL return "success" and "error". It will hit a method and return a string (the struts2). I have made JSPs ...
0
votes
1answer
56 views

Jquery tabs using ajax problem

This is the button type. <input type="button" name="add_person_to_notify" value="Submit" id="add_person_to_notify"> this is the script code. <script type="text/javascript"> ...
0
votes
1answer
183 views

Cakephp empty $this->data after $.post submit through jquery

I want to pass data to my ajax function in the controller, however the $this->data is empty. I have in the JS: $.post('/teach/update_word', {one: '1', two: '2'}, function (data){ ...
0
votes
0answers
172 views

Success callback not working in Chrome

I am having a problem with jQuery ajax in Google Chrome. My Code is as follows: $.ajax({ type: "POST", url: "Customer_search.asp", data: '' + $('#abc').serialize(), ...
0
votes
1answer
116 views

JQuery $.post() doesn't work

Can any one help me with the following code: $(document).ready(function() { $("#add_user").submit(function() { $.post( "../php/register_sql_ins.php", {r_fname: ...
0
votes
1answer
260 views

ajax jquery - post csv file to php one line at a time

I want to do this: user load a csv file it reads the data one by one php do the processing, it takes quite some time php enter the process to mysql problems are: csv file is too large, so the ...
0
votes
2answers
425 views

jQuery.POST : Call WCF Service not being called !

As I am trying to make POST request to my WCF service, I am not being able to POST the service request and can't get response. I'm using WebHttpBinding and my WCF service is hosted in Windows service ...
0
votes
3answers
43 views

$.post in script doesn't work

I need to add new several elements to the page on button click. I don`t understand - when I do everything step by step with fireBug - all is OK. If I switch Firebug off - nothing is added. This is js ...
0
votes
3answers
224 views

PHP function not returning any data to JQuery ajax method

I am using jquery's ajax method to post some data to the server and get back the response. Though the server side php code is returning a json encoded string/array, the response is coming back as ...
0
votes
2answers
588 views

rails and jquery post

im using this jquery post navigator.geolocation.getCurrentPosition(function(position){ $.post('/marketplace',{latitude: position.coords.latitude, longitude: position.coords.longitude}) ...
0
votes
1answer
109 views

jQuery post redirect browser to a different URL

I have a jQuery post to a method in '.asmx' file. It was working well in Firefox 3.5 but not in 4.0. When post happens it redirect to a URL something like 'www.5_124.com'. Don't know what's happening ...
0
votes
2answers
65 views

JQuery: Want to refactor some Jquery code to make it simple and easy

I have the following code in JQuery, On DOM Ready it runs, its job is to post data to my PHP file, and return the returned data into the specified div. I am using 5 bits of code, most of it is ...
0
votes
1answer
105 views

Jquery post > success not trigger

i had a problem with jquery post api.. $(".MGdi").click(function () { id=$(this).attr("rel") $.post( 'Mdeger.asp?cmd=MG', { id: id, drm: $(this).html()} , function( data ) { ...
0
votes
1answer
113 views

Send data from jQuery to PHP for mailing

I’ve a javascript file I’ve been using as an template for a site I’m working on and in that script there is a simple form validation where it – if no error occur – sends data to an PHP page called ...
0
votes
4answers
173 views

Changing the background-color on EVERY div when on is removed

I have a list of divs (div.row), which I need to update the background-color on. Currently I am via CSS setting the background color with div.row:nth-child(odd) and div.row:nth:child(even) .. The ...
0
votes
2answers
68 views

Running two .ajax()

As title, I have two ajax() has to go through but in condition that A ajax has to be go through in order to do B ajax. A ajax as in <<=== .ajaxFileupload() B ajax as in <<=== .ajax() ...
0
votes
2answers
328 views

Jquery $.post doesn't work

Is there a trick to making this function work? I want the page to be submitted to test.aspx upon button clicking and POST param in the following way: my html <a href="javascript:void(0);" ...
0
votes
1answer
47 views

Jquery Post Not Calling Page

Good morning! I have a user login page "/Account/Login.aspx" which uses a custom I've included an tag for the user to reset their password - <a ...

1 2