0
votes
0answers
4 views
jQuery Mobile page renders incorrectly unless refreshed
I am building a photo gallery page using jQuery Mobile 1.3.1 and Ajax to retrieve the photos from my PHP server in JSON format. When I navigate to the page for the first time the #album_loader div is ...
0
votes
3answers
20 views
Browser not loading HTML response after doing jquery.ajax POST to a servlet
I am having trouble loading some html that is returned by a servlet after doing a jquery.ajax post of mutliple files.
I can upload the files (pictures) just fine. I have a servlet that does some ...
0
votes
1answer
16 views
File download not pushing out from Ajax request
Basically, I'm doing a simple function which should work without any problems, but a second eye always works out better as I'm probably putting something incorrect.
The Ajax request I'm sending is :
...
0
votes
1answer
35 views
Ajax in jQuery not sending the correct Key-Value to PHP formular
Given this two pieces of code:
Javascript:
/* Stores the received song. */
var receivedSong;
/* Class: goearSong *
* Description: Stores a song */
function goearSong(link, artist, ...
0
votes
0answers
9 views
Rails jQuery Fileupload sends nothing to server in IE9
I'm using the jQuery Fileupload basic plugin on a Rails 3.2 app and have it working in Chrome, FF, IE10, but not IE9 and below. I have included the jquery.iframe-transport.js file as necessary for IE9 ...
0
votes
1answer
18 views
How do I display data using ajax and jquery using Ruby on Rails?
Hi everyone I'm trying to display data inside of a table using AJAX and JQuery, as you can see in my code , I used a partial form to retrieve data (this work great) and then when the save button is ...
-2
votes
3answers
49 views
How to insert symbols into mysql?
I created a page that inserts some data into mysql database using PHP, and Jquery, it's working great but the problem is when I try to insert symbols for example like these symbols :) :( :P =D :o ;) ...
0
votes
0answers
17 views
Updating an XML file and saving the update to the server with php
With the last line of the "updateRating" function I am attempting to post the update results found in this method back to the server and save the results. I am new to php and ajax so I am not sure of ...
0
votes
1answer
12 views
Possible to retrieve only a portion of xml data loaded with ajax?
I have my application loading and parsing my xml data with ajax, but I only want to return a specific number of values - starting with the first.
I feel like I should be able to specify what I want ...
-1
votes
2answers
42 views
Convert JSON Object to a simple array [on hold]
I have the following nested JSON Object coming from this call:
var jsonData = jQuery.ajax({
url: "http://testsite/_vti_bin/listdata.svc/ProjectHours",
dataType: "json",
...
2
votes
2answers
33 views
Ajax page load in div halts browser even if it is async?
I am trying to do async page open inside div with $.ajax but i am still having about 3sec delay after clicking link and that time page is jammed. Happens at least chrome and sasfari. Where am i going ...
0
votes
1answer
22 views
jquery .get xml file from url
So i have a simple task, get an xml feed from a server that is not ours. easy enough, however im running into allow origin control issues and the &callback= tag isnt solving the issue.
...
0
votes
3answers
11 views
Next page by selecting radio buttons not with clicking next page
what i want is this when i click on the radio buttons it takes me to the next page without me actually clicking on the next page.
At the moment i have to click on next page
Application form link: ...
1
vote
0answers
7 views
jQuery Ajax returns error in IE9 with RSS XML
I have an ASPX page that generates RSS XML like this:
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Title</title>
...
0
votes
1answer
5 views
applying a jquery plugin: loudev.com multiselect
I've got an AJAX call that reloads a multi-select. This is the AJAX I'm using:
function cargaValues(paramId){
var xmlhttp;
if (paramId=="-1"){
...
0
votes
2answers
27 views
write json to a file using jQuery and Ajax and PHP
I'm trying to write a json file based upon a filled in Form
So I used an external Library for jquery that converts the Form into legitimate JSON.
When I console.log that output I do get a valid json ...
0
votes
0answers
16 views
Break Out XML Nodes into Separate Divs
I have a very heavily nested XML file gotten via Ajax:
<parent01>
<parent02>
<childID>1</childID>
<container>
<index>1</index>
...
0
votes
1answer
12 views
jQuery Ui beforeShowDay - Disable Certain Dates
I am using an Ajax call to PHP to return a string of dates that a user is available, To make it dynamic.
I am returning the string back to my jQuery as :
...
-2
votes
0answers
28 views
Update User's Password Using jQuery Ajax
I am trying to be able to update a user's password for a web project. I have created a for which takes the new password from user. The user opens this link using an email which is sended to him. So he ...
0
votes
1answer
24 views
Toggle isn't sliding the first time
i need to do a toogle on jquery, but the first time the toogle runs, the loaded data just pops-up. The following clicks they slide ... what can i do ?
here is my code ...
function visita(id){
...
0
votes
0answers
13 views
looking for form file transfer done event! jquery ajax
I'm doing a file upload with "PECL uploadprogress" status while using a "beforeunload" warning if user try to close window, which is activated on summitting.
$('form').click(function() {
...
0
votes
1answer
18 views
Using Ajax load method with jQuery on Play 2 doesn't work
I am using the Play 2.0 framework.
I am trying to update a division in a template page using jQuery every 500ms, but it doesn't work.
I've already looked here : ...
0
votes
1answer
30 views
how to post variables to file like jquery ajax but with php
I'm working on a project where I have to include a third party application in our system. This application transmitts parameters to a PHP file using jQuery ajax when calling the index.php. The exact ...
0
votes
2answers
29 views
jQuery element click after AJAX
My project has a page using jQuery UI Tabs. Each tab calls a file using AJAX, each presenting a list. Each <li> element of those lists has a child element like <input type = "checkbox" />. ...
0
votes
1answer
51 views
IE10 - JQuery ajax html not loading data
I was wander whether you can help me. I have done some research already by looking at the following post (Ajax not work on IE10) and few other websites, but unfortunately it did not fixed my problem ...
0
votes
3answers
40 views
Ajax url encoding issue
What i am attempting to do is send an encrypted message and the corresponding key (two way encryption) to a php page for it to be decrypted and then have the result returned in the response.
Here is ...
0
votes
2answers
15 views
In Ajax Response getting whole page : Spring MVC, Ajax
I am working on a ajax request/response to update a table,
But when Ajax put a call to controller I am getting whole page in response. But what i want is only precise table data which i need to map ...
0
votes
0answers
6 views
How to add features to GISCloud.com Embed map using API
I need to add some features to www.giscloud.com using its API :
Note : to understand what am talk about , you need to signup and then upload some map , and try to explore the service and what does it ...
0
votes
1answer
5 views
Adding more item inside filterable portfolio in wordpress theme
In my wordpress theme I have created custom post type page for "portfolio" and implemented Isotop-jquery filtering for categories items (images or video). This works as usual. Now I want to implement ...
0
votes
1answer
20 views
How to get selected checkbox values in controller from formcollection?
I am passing a form collection object to one of my controller via ajax like this.
var formCollection = $(':input');
$.ajax({
url: url,
type: 'POST',
...