jQuery JavaScript Library suite for AJAX requests. A full set of functions that allows to load data from the server using asynchronous HTTP requests, without a browser page refresh.

learn more… | top users | synonyms

0
votes
2answers
29 views

loop through an HTML select element and send contents to AJAX via JSON

I'm trying to send the id and text value of all the option tags in an HTML select element to AJAX via JSON. I have an object server side called "myObject" with 2 properties: objId, and objName. And I ...
0
votes
1answer
27 views

Issues with AJAX grabbing and saving records

I am working on a form to database save/grab using ajax/jquery. I am having issues saving and grabbing though. My ajax keeps failing and I can't tell why. I know this should work. I movedmy ...
0
votes
1answer
53 views

JQuery Ajax request failing only in mobile browser

There are numerous posts where people ask this.. but it seems like the majority have issues when they use ajax requests for cross domain connection. I simply use this on the same domain and still ...
1
vote
3answers
67 views

Jquery Ajax error for asp.net page

I have a very simple page and a [WebMethod] inside it which returns a simple message. I would like to show this message through $.ajax on client side. however my website is using rewrites rules so my ...
3
votes
1answer
64 views

AJAX works if chrome dev tools open but not if chrome web tools closed?

I'm loading a json file via ajax. If Chrome dev tools is open, everything functions perfectly. If Chrome dev tools is closed it fails. Thankfully dev tools still keeps doing it's thing even when ...
0
votes
0answers
32 views

jQuery .load Optimization

I'm currently in the process of building a website that serves users content in two columns. The left hand column contains a diagram that links to detailed report information based on the item they ...
1
vote
2answers
65 views

How can I provide real-time notifications without tying up resources?

I'm using AJAX to implement long polling on a page which I want to update whenever new rows are inserted into the database. The way this is done is with jQuery's .ajax() calling, for example, ...
-1
votes
1answer
56 views

Can't call Ajax function from my php script, working with live table it

I'm working on this project that uses a live table edit style (works perfectly) but trying to include the twitter style follow and unfollow in one of the columns (The last one precisely) the php works ...
1
vote
0answers
19 views

Can't load div with “data-role=page” via ajax

When I try to load a jquery mobile page via ajax into the body tag, the content is not shown at all if data-role="page". Why does that happen? JS: $(document).ready( function() { $.ajax({ ...
0
votes
1answer
36 views

Not able to maintain checkbox during pagination using jQuery

I have 4 buttons for pagination(first,move next,move back and last). I am trying to maintain checkbox during pagination. The problem is that when I select any checkbox and then go to next page and ...
0
votes
2answers
67 views

Find and show the route of the closest markers using DirectionsService by Google Map API v3

Thanks for the help in this forum and i almost complete my assignment in searching the shortest route between a starting point and many markers. However, my distance measurment is simply adopting ...
1
vote
0answers
29 views

why jquery-ajax not working in 000webhost.com [closed]

i've created a php file for inserting values into mysql database using jquery-ajax. but it seems i'm not able to get it working.....here is the live link http://nidhishkrishnan.site40.net/sample.html ...
0
votes
4answers
45 views

PHP Pass variable up the page

I came across someone asking the question, How can I pass a variable up the page (on the same page?). I had a think about it but couldn't think of how to do it myself, so I was wondering if it ...
0
votes
3answers
48 views

How to bind behavior on newly inserted Dom elements?

In my website I have buttons that are loaded via AJAX. How can I ensure that my jQuery hide() operation is applied to all buttons that are inserted into the DOM in future? As far as I know on() works ...
1
vote
1answer
38 views

Joomla Who is online auto refresh

There is a core module that shows the online users, if you are already in the page and a new user login you will not see him until you refresh the page. I want it to show the user without refreshing ...
0
votes
0answers
47 views

Jquery UI Tab Reloads Page on tab click

I installed ajax jquery ui tabs 1.9.1 found here http://jqueryui.com/tabs/ on my site. i have it installed on a variety of pages, i would like to change the way they work. When a tab is clicked i ...
0
votes
1answer
22 views

Fail to get response from Ajax call in static page

I am wondering if it is possible to make an ajax call from a static html (c:\file.html) to my local server? My html is this: <div id="debug"></div> <button ...
0
votes
1answer
51 views

Custom input box behaviour

I have some simple HTML : First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <input type="submit" value="Submit"> ...
0
votes
0answers
31 views

How to show the different date instead of default current date in arshaw calendar

I am implementing Arshaw calendar to show the events in calendar. In the document.ready i implements to bind all the events in calendar. But by default arshaw calendar is showing current systems ...
0
votes
0answers
13 views

how to figure out the ids of the tags which append a div tag

I'm currently involve with a project related to django and ajax. and i'm appending several drop downs to a div based on previously selected drop down values (ex: when selecting a project it'll append ...
1
vote
4answers
49 views

Loading Content Via Ajax

Ok, so I'm pretty new to ajax and loading content externally and would appreciate any insight to my problem. I currently have a hidden div that is empty where the ajax content should load in after a ...
-2
votes
1answer
70 views

Sending form to e-mail

I'm trying to send a form to a e-mail using AJAX. Problem : I'm not reciving the e-mail. Obs.: The form is in portguese just ignore the text part ;) index.html ... <head> <script ...
1
vote
1answer
58 views

JQuery AJAX Get request with JSON

I call the following ajax from a form: $.ajax({ data: JSON.stringify($('form').serializeArray()), //an array [{"name":"myform","value":"entered value"}] dataType: 'json', type: 'POST', ...
0
votes
1answer
43 views

Passing array of ints from ajax call (via token-input) to controller

I've been trying to pass an array of int's created by the following function: function getCurrentSwimmerList() { var swimmerList = []; $("#swimmerTable > tbody > tr").each(function () ...
0
votes
1answer
17 views

jquery success/error callbacks not firing

This seems to be a frequently encountered situation but none of the solutions suggested to the earlier problems seem to address mine! Neither the success nor the error callbacks are firing. However, ...
0
votes
0answers
59 views

dynamic column data, client side sorting and server pagination in jqgrid

I am trying this for the first time to load dynamic column data and column name from server, and also to use server side pagination. The issue is when i use datatype : 'local' in jqgrid AJAX ...
4
votes
1answer
46 views

How to increase the number of RSS feeds using Google's Dynamic Feed Control

The feeds currently shows four news stories. How do I increase it so that it contains more than 4 news stories? I have tried: var feed.setNumEntries(20); after var feed ...
-4
votes
0answers
28 views

Toggle selection then pass value to PHP [closed]

I am new to jQuery. What I want to achieve is the select/unselect capability then update the MySQL database. I want the user to be able to select an item, pass the value of that item to the MySQL ...
0
votes
1answer
39 views

ajax is not capturing actual response from Struts2 action class

The below ajax method firing method in action class and action class failing (with null pointer exception with all stacktrace); but my ajax always goes into success: function.? Please let me know why ...
0
votes
2answers
41 views

How to bind Events on Ajax loaded Content?

I have a link that should insert ajax loaded content into a div (appendedContainer) of my html page. My problem is that the "click" event I have bound with JQuery is not being executed on the newly ...
0
votes
1answer
25 views

jQuery AJAX program flow out of sequence

Building a prototype (concept) page that fakes out an approvals process. When user clicks #view_more button, desired behavior is for the message "Requesting More Time" to appear in a div and continue ...
0
votes
1answer
16 views

jquerry tabbed content creates page shift

I am using jquerry tabbed content and I have noticed when navigating to any tab other than the product tab the page shifts a few pixels to the right and then when clicking the product tab it shifts ...
-1
votes
0answers
25 views

data do not appear when it get back by the ajax [duplicate]

i have an error the php data do show when it rturne by the ajax but it i do an alert the data appear i have a php code that related to a database after the running of the code everything work as ...
0
votes
0answers
32 views

i can not get back data from php to ajax

i have a php code that related to a database after the running of the code everything work as it should but when it comes to getting data back to the ajax the system do not work ... means it must ...
0
votes
1answer
61 views

MVC 4.5 Async Ajax call not working

I have a slow running action on a controller that I've converted to the new Async method. It now runs much faster, however any jQuery Ajax calls to it return the following string, ...
0
votes
1answer
41 views

$.get success function not getting executed

I am not sure if I am asking the right question in this forum but since this evening I am seeing some peculiar problems with my jQuery $.get function. Here is my code: $.get(destinationURL, ...
0
votes
1answer
55 views

photo not displaying after making php call

I am trying to retrieve some data from a database using php, then I add the data inside json_encode array to be sent to my other php file so that the contents could be displayed on a site. currently ...
0
votes
1answer
46 views

Create an accept or deny action to a friend system using php mysql ajax jquery

i have a friend request system that allow users to send a request to others and i have a accept or deny button . but the problem is that there is something in the code that is not write and make the ...
0
votes
3answers
63 views

javascript while loop not working (infinite loop)

Trying to do a while loop using $.getJSON to return progress of a certain task. The initial $.getJSON works flawlessly; however the loop never completes. I am passing certain variables through a ...
0
votes
2answers
47 views

JS Variable in jQuery ajax data

jQuery: function myajax(var){ $.ajax({ url : 'ajax.php', type : 'POST', dataType : 'html', data: { if(undefined != var){ variable : var, } content : $("#myinput").val() ...
0
votes
0answers
25 views

Assign array of strings from JSON to Handsontables object in javascript?

I am trying to assign array of string to handsontables column as auto-complete. I am getting this JSON data from AJAX calls. I am not getting to assign to source:. Please follow the code. var ...
0
votes
1answer
52 views

Add options to dropdownlist added by javascript MVC

How I can add options to a dropdown list added by javascript? I have the next view in a MVC application @Html.DropDownList("list1", new SelectList(new ListDictionary()), htmlAttributes: new {@class = ...
5
votes
3answers
115 views

Looping through an ajax callback with jquery

I'm attempting to loop through an ajax call for 3 different json files with the same naming convention and structure (but with slightly different data). I have been using deferred objects instead of ...
1
vote
1answer
39 views

Gathering Data from a Checked Row in a numbered list

As an RPG pgm for 25+yrs I have been working with JavaScript & JQuery for about 16months & mostly by copying & trial & error. The issue I am having is probably very basic for many but ...
0
votes
1answer
11 views

Is the url property of a jQuery ajax request accessible in the done function?

I'm making multiple calls (in a loop) to $.ajax like so: var getRequest = $.ajax({ url: "http://maps.googleapis.com/maps/api/geocode/json?address=" + etc, type: "GET", dataType: "json", }); Can I ...
0
votes
3answers
32 views

php paths differ between ajax use and php use

I just stumbled upon a (at least for me) new weird behavior of paths while using php functions with pure php or ajax calls. If I use just php the path in the php function is like: ...
0
votes
2answers
43 views

Handling redirects with Codeigniter and jQuery mobile?

I'm building a mobile web app with jQuery mobile and Codeigniter & TankAuth. When a user logs in or out, they are redirected from the TankAuth login/logout controller to a page of my choice. The ...
-1
votes
1answer
37 views

How can I read url hash to now which page content I should get from database?

What I'm trying to do is this: if the link entered is, per example, "www.mywebsite.com/mypage.php#subpage5" , I want to save "subpage5" to a variable so I can use it to load respective content from ...
-1
votes
2answers
37 views

Finding a row based on 2nd and 3rd TD values

I have a table of following structure :- <tr class="tbs_tr" style="background-color: #ffffff;" jQuery1368711830388="355"> <TD style="WIDTH: 20px" class=tbs_td><INPUT ...
0
votes
3answers
48 views

Web API - Simple Post model with collection property is not binding

// Server-side Model to bind public class CurrentPipelineRequest { public List<string> Usernames { get; set; } } // Controller [HttpPost] public HttpResponseMessage ...

1 2 3 4 5 298