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.
0
votes
0answers
12 views
How can I throw an exception out of an AJAX call and out of a function?
Say if I have this jQuery AJAX call within a function:
function callPageMethod(methodName, parameters) {
var pagePath = window.location.href;
$.ajax({
type: "POST",
url: ...
0
votes
1answer
18 views
confirmation page on modal box after hitting submit
I'm trying to set up a form where our customer could fill out the form once they click submit the confirmation page or thank you page will be on modal page instead of new page.
I hope you can help. ...
1
vote
2answers
29 views
how can I return values from chained deferreds in jQuery?
I'm trying to trace the return value from a function call:
$('#button').on('click', function(){
console.log( getMessage(3) ); // I'm trying to get this to "hang" until ajax-related stuff is ...
0
votes
0answers
18 views
Memory leak in Firefox with jQuery, AJAX, and HTML5 canvas
I'm polling my server using jQuery's ajax function and then using that data to update a canvas. I poll the server once each second (this is not done using setInterval(), in case you're wondering... I ...
-4
votes
0answers
24 views
send xml by jquery ajax [on hold]
I try to send xml by jQuery ajax
if i write:
$.ajax({
type: "POST",
data: {xml:xmlText.substring(1,15)},
url: "/TouchMenuPanel/Save",
success: function(msg){
alert(msg);
},
...
0
votes
1answer
16 views
Using AJAX to Dynamically Fill a Dropdown VB.Net JQuery
I am trying to make an AJAX call to fill a dropdown when a value is selected in another dropdown. Currently, I am getting a SyntaxError: Invalid Character error, but if I remove the "dataType: json", ...
0
votes
1answer
36 views
Cannot parse json data from ajax call. Attempted fixes cause me to go in circles. Why?
UPDATE: @MESSIAH told me to shorten this. Here is the bare bones version.
I cannot parse my response from an ajax call. I keep going in circles. Google is basically telling me that this is the ...
0
votes
0answers
4 views
Passing Params into Zoho HTML View
I've been researching this issue for awhile, and while I've found information, I cannot get it resolved.
I am pulling data from a website via a plug-in. I want to save this data to a Zoho database. ...
0
votes
0answers
10 views
Show Google Maps GPS points from JSON source and snap to road
I have a problem getting this code to work - even to understand it precisely which of course is the reason for why I can't get it to work. I wanted to create a JSFiddle project but as data is with ...
-1
votes
2answers
15 views
How do add delay time in (jquery) ascensor.js?
How do i add 'delay' option to move to next slide after clicking? Anyone tried?
Below is the plugin website.
https://github.com/seekvence/ascensor
Thanks in advance.
0
votes
1answer
16 views
how to make auto completer work with Jquery UI
I am trying to use autocomplete, ajax call work perfectly when I use out side the auto completor. But Following code doesnt work. How to set data to source properly?
$("#searchbox").autocomplete({ ...
2
votes
3answers
61 views
ajax $_POST data then redirect to new page
I have been going crazy for the last 2 weeks trying to get this to work. I am calling a MySQL Db, and displaying the data in a table. Along the way I am creating href links that DELETE and EDIT the ...
0
votes
4answers
33 views
jQuery AJAX return 404 error
I try to use AJAX to send form data to server, but it returns me 404 all the time.
Here is my code:
$(function() {
var dataString ='Name: '+conditionName+"&Desc: ...
0
votes
0answers
10 views
Ajax call Not Redirecting to Controller
I'm Working with Asp .Net MVC3,using the follwing jquery
$(document).ready(function () {
$('#srch').click(function () {
var Geo = $("#geo").val();
var Vertical = ...
0
votes
1answer
18 views
how to call ajax method recursively
I have a problem in my ajax call.
In the below code, pageReload() function is automatically called when the page gets loaded which in-turn calls the ajaxCall() function for every 10 seconds.
I'm ...