0
votes
2answers
36 views

Get data from php file + ajax

i want to get data that's loaded in my PHP file in javascript. This is what I do: $("#submit").click(function() { // GET VALUE OF APPID var appid = $("#appid").val() // GET JSON FROM PHP ...
0
votes
2answers
26 views

MVC4 cannot map object properties to JSON from AJAX POST

Model: public class JsonRequest { public string Data { get; set; } } Action: [HttpPost] public ActionResult Index(JsonRequest data) { return new JsonResult() { ...
0
votes
2answers
70 views

MVC 4 Controller JsonResult

I have a question related to my controller in MVC. I want to loop inside my JsonResult GetAfmeldingen using foreach. But what I do will not go inside my foreach here is my code as it looks right now ...
2
votes
1answer
23 views

Save the contenteditable changes in json file using php ajax

I was trying to make a page content editable using html 5 and save the data in json file for later use. I would also like if the page loads using AJAX just the part which is edited and a php file ...
0
votes
0answers
20 views

iOS PhoneGap / Cordova Load Google Maps v3 Markers from AJAX JSON

I'm using the iOS Cordova / Phonegap and need to pull locations (latitudes and longitudes) from a database and display them on a google map as markers and infoboxes. Right now, I am loading the map, ...
0
votes
0answers
32 views

Differences between JSON response with Safari and Safari Mobile

I noticing some strange behavior between different browsers with a JSON response. The browser i'm having the issue with is Safari Mobile, specifically the iOS simulator. I'm using Codeigniter and am ...
0
votes
1answer
34 views

Loading data from external json file with javascript or jquery

I'm looking into dynamically using data from an external json file into my javascript. I must have misunderstood how to call the file because for the moment I can't even access the data... So theres ...
0
votes
0answers
22 views

Ajax call to Rest service not successfully calling success function in ajax

I am having some ajax difficulties (and am newish to ajax, but have done a fair bit of searching) when calling a java rest server that I have written. I have a test html page running within the Rest ...
0
votes
1answer
18 views

Referring to parent loop from a nested loop

Here's what I'm trying to achieve: I have 2 tables in my db - 'regions' and 'distributors', both have a region_id column. What I want, is to: 1) iterate through the 'regions' table, for each region ...
-4
votes
1answer
32 views

How to convert stringified data to an object?

My php has header('Content-type: application/json') and a json_encode. The ajax code I use to send the data to the php file has dataType: 'json' and I am sending the data as a string (json.stringify). ...
1
vote
2answers
19 views

Unable to use dynamic JSON

am using ajax request for calling jersey restful url. function deRegisterPersonOrganization() { var dynamicJson = $('#jsonRequest').val(); alert("Text Area JSON : " +dynamicJson); var ...
1
vote
0answers
22 views

Trap message/exception in jquery to ELMAH

In my MVC3 application, I am returning messages from my stored procs. If it is 'successful', I'm moving forward else displaying a custom error page. When the message is something else, I want to trap ...
0
votes
1answer
35 views

Variable overwritten when using asynchronous AJAX (using jQuery) request to load data

I have the following code that loads information about a users payments a month in advance of when it's needed. The function works when I wait for each month to load however it fails when multiple ...
0
votes
2answers
20 views

Spring MVC JSR 303 Validation with Json response validation errors from ValidationMessages.properties

Hi I was looking for everywhere but can't find solution. I am making an ajax call in Jquery function and submiting data from spring inputs form:input to Controller. Controller is validating date by ...
3
votes
2answers
44 views

Why won't my $.ajax call return a json object from a cshtml file?

I have this jquery that uses ajax in an attempt to return a json object, but I am no pro at ajax, though I have used it before with json, only I was loading a json file and not trying to return a ...
1
vote
1answer
17 views

How to open a zip file on ajax return to get the json content?

I've uploaded a zip file to S3. The zip file contains a compressed json file. How do I open this zip file and get the json content? $.ajax({ url: "url/list.zip", ...
0
votes
1answer
31 views

Find link and send it with form to email

How could I make a simple html form (with only name & email) that when submitted a bit of Jquery finds a specific link on the page and send it along with the info from the form to a web server ...
1
vote
1answer
30 views

JSON Date Range From jQuery Calendar

I have a scenario where by I select a date from a jQuery Calendar and then, via ajax, iterate over a JSON file. My issue arises due to the use of date ranges, for example, see startdate and enddate: ...
0
votes
2answers
34 views

pass json data to aspx webmethod page error: “System.Collections.Generic.IDictionary`2 is not supported for deserialization of an array”

I Want Pass json Object to WebMethod in aspx page here's my jquery and WebMethod $("#button-login").bind({ Click: accountRegister }); function accountRegister(e) { var dataObj = ...
0
votes
1answer
37 views

F# MVC Json Result, on the client empty object after Ajax call

I have a F# mvc app, and I am trying to get ajax call into and endpoint that will return a list of people, which will then display in a table. type Person(credits:int, name:string, ...
0
votes
1answer
23 views

Parsing json Array Ajax Return Data

Can somebody explain me how do i parse this Ajax response in jQuery {"d":{"__type":"ListUsers+returnData","Type":"Success","Message":"User Added successfully."}} I am using same return types for ...
0
votes
2answers
27 views

JQuery Datatables + Codeigniter (Static cols)

I am using Codeigniter with JQuery Datatables to present data from MYSQL database with realtime updates via AJAX/JSON requests. I am not the original developer of this code that's why I am not being ...
5
votes
2answers
64 views

Ensuring retrieved JSON is validated from the correct server for Javascript games

I'm currently trying to establish a technique to verify some data from my server, for a simple Javascript game. I understand that there are many issues with trying to protect your Javascript ...
0
votes
3answers
70 views

Decode JSON POST in php [closed]

I am using dataType:'json' and data: {'post':val} in my ajax to send the data to my php file. val in data: {'post':val} is a variable. The data sent to the php file is [object Object] so, before ...
0
votes
0answers
37 views

Jquery chosen ajax call populate multiselelect not working

I am using a Jquery chosen multiselectlist to add events to a meeting based on the type of sport selected in a dropdown that contains a swimming and an athletics string. When I select swimming only ...
0
votes
1answer
13 views

AJAX jQuery Freezing IE/Safari

At my wits end here. Im running this script <script type="text/javascript" charset="utf-8"> jQuery(window).ready(function(){ //alert('running'); var sold = false; ...
-3
votes
0answers
23 views

How to post curl in jquery ajax json? [closed]

I need to write this code in JQuery: curl http://localhost:9292/faye -d 'message={"channel":"/channel/new", "data":"1"}'
0
votes
0answers
59 views

Creating multiselect drop-down box using Select2 via ajax call

I am trying to create dynamic multiselect dropdown box using select2 jQuery plugin. Here is my HTML code:- <html> <head> <title>Select2</title> <link rel="stylesheet" ...
1
vote
2answers
39 views

jquery ajax post , trying to post a json , doesnt work

I have a small php server that i developed. The server waits to serve json files that will be sent to him. I created an html page and i am using jquery to try send a json file to my server. I have a ...
0
votes
3answers
100 views

jquery ajax does not working when returning with php json_encode

SOLVED problem solved, please see bottom answer for my solution i've been struggling with this, i read tutorials about $.ajax() here's the script <script src="jquery-1.7.2.min.js" ...
1
vote
3answers
55 views

Jquery $.get() returns undefined result from php script with JSON

updated Err i try to see more tutorial and i decided to use $.get() first since its easier and good for starting point.. so this is the script and i think it works correctly except it gives ...
1
vote
3answers
69 views

cant get json object to show using ajax/jquery

I don't know much about JSON and have never been able to return something with JSON into ajax and show it using jquery despite of my many tries.What I am trying to do is, send data using JSON object ...
0
votes
2answers
38 views

show ajax loading indicator when using synchronous ajax with JSON

I'm using ajax with jQuery on my site and need to show a progress / loading indicator. My dilemna is this: Synchronous AJAX locks the browser, so I cant do anything (e.g. show a loading indicator) ...
3
votes
3answers
59 views

Url format in a json query string

In jQuery.getJSON it says: Data that is sent to the server is appended to the URL as a query string What is the format of this string? I see a url of this format coming from such a jquery ...
0
votes
4answers
44 views

JavaScript, Ajax,Json : how to use a variable whose value depends on the json response?

Why is x undefined at line 11 when it is defined in line 9? <script> var x; $.ajax({ dataType: "json", url: myurl, success: function(data){ console.log(data); x = ...
0
votes
1answer
43 views

jQuery ajax call not populating multiple select

Having difficulty getting this to work. Using Chrome javascript console, I can see that my function is firing and getting the result I nee, it just won't populate the multiple select. Here's the ...
1
vote
1answer
34 views

Appening Bulk of JSON Data From Server

In jQueryMobile and PhoneGap project I got more than 1000 of data in JSON format. The problem am facing that; Need to fetch all the data with in minumum time. So for this purpose ; currently am using ...
1
vote
1answer
34 views

Use Action method selector to differentiate between Ajax and non-ajax request instead of relying on if(Request.isAjaxRequest)?

I'm following a book called 'Asp.Net MVC4 in Action'. And now at certain point they say, Instead of relying on if statement within our code to check if the request is Ajax or not, we could use an ...
0
votes
4answers
50 views

Cannot access JSON response attribute

I have a JSON response in JavaScript that looks like this: {"opt1":"2.92","opt2":"4.24","opt3":"6.36"}; This is the result of applying console.log(data) where data is the response: success: ...
0
votes
1answer
62 views

How can i auto complete a dropdown list using ajax in MVC

I'm trying to autocomplete a drop down list when someone types a postcode into a input field but I haven t been able to fill the dropdown list yet this is where I am: JQuery <script ...
0
votes
2answers
52 views

Searching inside a JSON using Ajax and PHP

I have a JSON filed named items.json. I need to create a small search box in which I can input the name OR the category and perform a live search as I type. The return should be: If I search for AXE ...
0
votes
2answers
63 views

Reading JSON data in jQuery AJAX post output [duplicate]

I have the code below which i am passing through json to jquery. $string['msg']['1']['Name'] = "John Doe"; $string['msg']['1']['Said'] = "Hello there"; $string['msg']['2']['Name'] = "Jane King"; ...
0
votes
3answers
45 views

how to fill combobox with ajax function?

I am using an ajax funtion for filling combobox. I have an ajax code like this. $(document).ready(function() { alert(); $.ajax({ url:'Stations.php', type:'POST', // data: 'q=' + ...
-1
votes
4answers
64 views

using an array from PHP in a JS file

I have an array in my index.php which is created by a foreach: foreach ($events as $eventkey =>$event) { echo "<li class='desktop-2 tablet-1 ...
0
votes
0answers
49 views

AJAX issue on displaying HTML data encoded with JSON

How can I display correctly DIV elements from a successful AJAX call? <script> $("#form").submit(function(){ $.ajax({ type:"POST", url:"index.php", data: ...
0
votes
3answers
33 views

Having trouble looping a JSON file to create manipulatable results to populate a drop down list

I am having problems remembering how to loop through an object to manipulate it into options in a select form object. I have gotten this far but the alert from inside the success function simply ...
0
votes
1answer
20 views

The Contract Name 'MyCompany.CostReduction.EditInitiatives' could not found in the list of contract bt the service 'EditInitiatives'

I am getting above error for ajax based WCF serive. Code looks like below. Code <ServiceContract()> Public Interface IEditInitiatives <OperationContract()> _ ...
2
votes
3answers
71 views

Allowing javascripts in an AJAX Called file

I have read numerous methods of allowing scripts that are called by an AJAX function but I am having trouble making it work, so if possible an example for this specific code would be great as I am ...
0
votes
2answers
45 views

using json to update mysql database blank fields

I'm trying to insert records into a mysql db but the fields are blank. Here is my js: $("#submit").click(function() { var product1name = $("input#product1name").val(); var product2name ...
0
votes
0answers
40 views

Select and Display ONE element(row) of JSON data?

I have a bit of experience with php and mysql, but am just getting into javascript/ajax/json and I am a bit confused. I can now do a mysql query and return the json_encoded data, I found a script ...

1 2 3 4 5 86