AJAX (Asynchronous JavaScript and XML) is a technique for creating seamless interactive websites via asynchronous data exchange between client and server. AJAX facilitates communication with the server or partial page updates without a traditional page refresh.
0
votes
1answer
28 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 ...
3
votes
3answers
40 views
getting my back and forwards buttons to work with ajax
My site is working much quicker thanks to some code I painstakingly modified, but I would love if the browsers' back/forwards buttons worked. Right now, with my code below, the browser address bar ...
-1
votes
0answers
16 views
Geographic Coordinate Masked Input?
With jquery masked input, how to make masked input with following specification:
the value is decimal which have only single dot (.).
Input Range:
Lat: -90 to +90
Long: -180 to +180
if plus or ...
1
vote
1answer
18 views
Too many forms on a page - is it an issue
I am looking for the practice which is most advisable in terms of coding practice
I have a comment system which for each comment, you can reply to. This leads me to several options on implementing ...
2
votes
2answers
2k views
jQuery, CORS, JSON (without padding) and authentication issues
I have two domains. I'm trying to access a JSON object from one domain through a page on another. I've read everything I could find regarding this issue, and still can't figure this out.
The domain ...
-2
votes
0answers
54 views
how to get $.get jquery dynamic argument variable
I'm trying to create an Ajax function call where the argument q will be dynamically defined, and the $.get function will return either true or false depending on the data returned by the Ajax call.
...
0
votes
4answers
56 views
Submitting two form using javascript but failed
i have been trying to Submit two form using javascript and failed. i have searched stackoverflow but none of the javascript works ...
also tried this Submit two forms with one button
here is my ...
0
votes
1answer
56 views
Populate Combobox with ajax
Hi I am trying to populate a combobox using ajax, but I cant get it work. This is my code, I get the data from a Servlet.
$.ajax({
type: "POST",
url: "../../sListarProvincia",
...
0
votes
0answers
4 views
Telerik MVC Editor - Ajax Decode
I am using the following to send a canvas image and contents of Telerik MVC Editor to generate PDF file using itextSharp.
$("#savePDF").click(function() {
var editor = ...
-2
votes
4answers
50 views
Why the data returned to ajax looks ok in alert but does not work when I try to put it into my html
Here is the unworking part of my ajax code:
$.ajax({
// ...
success: function(data, textStatus, jqXHR) {
// La reponse du serveur est contenu dans data
// On peut faire ce ...
0
votes
1answer
34 views
Pagination vs Load More?
nowadays, I know two methods how to present limited data from database to user.
the first method is using pagination like
first previous 1 2 3 .. next last
the second method is using
Load ...
0
votes
0answers
19 views
Menu bar notification badge update issue
I have a menu bar with notification bubble badge (CSS3), and a php script to retrive the new messages count from mysql database (messenger inbox system). I want to update the value of the notification ...
0
votes
3answers
76 views
Loading ajax JSON failure
the bellow scripts runs at my Local Host but does not work at my Site.
I'm just testing simple Json script in jqueryMobile list format
any idea what is wrong??
thanks
HTML page click to call Ajax ...
0
votes
1answer
26 views
javascript script tags and ajax issue
I use ajax on my site for navigation but I'm having a problem with script tags in my pages. (My app is a Rails app but I don't think that makes a difference)
For example, I have a button on my page:
...
0
votes
1answer
45 views
I want to pass a JS variable onto PHP and use it there
I want to pass variables to PHP from JavaScript. I've read about not being able to do this without a AJAX call, or putting it in the URL in JavaScript and then working with $_GET. The problem is that ...
-1
votes
2answers
31 views
Multiple jsonp Ajax Call with jQuery deferred method $.when
I have a simple ajax function:
function GetJsonData(api) {
return (
$.ajax({
type: 'GET',
jsonpCallback: 'callback',
url: api,
dataType: 'jsonp'
}));
}
and now when I tried to do multiple ...
4
votes
1answer
64 views
+50
Trouble re-triggering CSS 3 animation after Ajax response
Here is an HTML form
<form method="post" action="camount.php" id="loginForm">
<span id="heading">Username: <input type="text" name='us' id='us'/><br />
...
0
votes
1answer
19 views
Callback success function doesn't receive data
Background: I am inserting into a page content from external php file thru ajax.
Constraint: I want to follow object structure described in How to “properly” create a custom object in JavaScript?.
...
-1
votes
0answers
16 views
Wordpress and Ajax
What is the best way to make a request via ajax to a standalone php script in wordpress?
I understand the best practice proccess of implementing ajax in wordpress is to:
create a function in ...
2
votes
2answers
31 views
Javascript/AJAX Asynchronous Loading Spinners
I am trying to make a basic enough page that allows the user to execute a php script by clicking a button. Each button will have a loading spinner popup on clicking.
My problem is, on clicking one ...
0
votes
0answers
81 views
POST request is not being sent [closed]
It is eluding me. I can't get to the console.log('hello world'), it never sends the POST request to the server. What typo/mistake I got in this?
Thanks
$('.rateup').click(function() {
var ...
-2
votes
0answers
44 views
How do I pass an AJAX request within another AJAX request
I have a web page with menus. Each menu has a page loaded using AJAX. On one page, I'm using a form to change the password (includes checking existing password and changing new password).
How do I do ...
0
votes
1answer
21 views
jquery submit button reset
I have a form that submits via jquery post.
the result of the query returns text which is populated into a div below the form.
The form works and returns data but the form submit button doesn't ...
0
votes
1answer
27 views
What is the proper way to activate jQuery validation on a form that was loaded via Ajax?
I have a WordPress/BuddyPress registration form, and I want to handle the form submission via an Ajax call, rather than direct page submission. I have the following code:
<script ...
0
votes
1answer
38 views
Numbered special characters not being sent correctly by jquery ajax
I have seen several post about different way to get around special characters not transmitting correctly. But, I was wanting a better and simpler solution (may not find it).
I have a fuction that I ...
0
votes
2answers
49 views
Ajax/PHP value not incrementing more than once
I'm working on developing a very simple voting system and as a proof of concept I have a div with a php defined variable that is supposed to be incremented by 1 when the button is clicked. What I ...
-2
votes
0answers
20 views
Jquery Ajax and Rendering Textfield value at The Moment of Input [closed]
Can someone let me know how I can use Ajax and jQuery to render user input in an HTML tag while users are entering the values in Textbox field.I used to saw some thing like this in the web but I ...
0
votes
1answer
25 views
Javascript breaks when I update html with Ajax
Having a problem with a webapp i've been working on lately, and it has to do with ajax reloading breaking javascript.
I have the following Ajax Call
$.ajax({
type: "POST",
...
0
votes
0answers
18 views
PhoneGap app downloading output file from PHP
I've just started working with PhoneGap for developing Android applications and have run into a problem. The application I'm building collects data from the user and is sent to the server where it's ...
0
votes
1answer
23 views
Initialize Google map on AJAX refreshed partial
I can display a google map with markers no problem but I can't get a map to display within a partial when that partial is refreshed using ajax. I'm guessing it's because this final initialization line ...
1
vote
5answers
35 views
Form submit with AJAX passing form data to PHP without page refresh
Can anyone tell me why this bit of code isn't working?
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
$(function ...
0
votes
1answer
18 views
Using Ajax_Jquery to perform a delete action in Zend
I'm new to Ajax/Jquey.
I want to delete a row (email) in the database (emails table) when user press a link in my view. there is my view example
<a href="delete/id/<?= $email['id'] ?>" ...
2
votes
1answer
25 views
Saving WAV File Recorded in Chrome to Server
I've seen many partial answers to this here and elsewhere, but I am very much a novice coder and am hoping for a thorough solution. I have been able to set up recording audio from a laptop mic in ...
0
votes
2answers
52 views
guestbook ajax php jquery
Have been trying to make a guestbook with jquery, ajax and php, I have been able to reed and print out everything inside the database but for some reason I cant save what I write in the database and ...
0
votes
2answers
27 views
Calling xmlhttprequest open() and send() from function
I am running into a problem. I am trying to send a get request from a form using the form's onsubmit='function();' and ajax.
<html>
<head>
<script type='text/javascript'>
var ...
0
votes
1answer
24 views
jQuery .each loop pausing for iframe to fully load
I need to pause the .each loop giving the iframe time to load. Is there a way to do this? I've researched callbacks and so forth with no luck. I don't want a timeout because I need to make sure the ...
0
votes
1answer
38 views
How do I put a jQuery datepicker in a SimpleModal dialog that its data comes from an ajax call?
I have a modal window appearing using SimpleModal with a jQuery datepicker attached to the textfield licenseExpiry. licenseExpiry is defined within the contents of the ajax call (SchoolDetails.php). ...
1
vote
1answer
57 views
How can I successfully implement a “Remember This Action” routine?
I am really having a difficult time getting started with this task.
I have 2 forms on same page.
The first form provides a search box for users to enter one of several search filters like Address, ...
0
votes
2answers
40 views
Keeping CSS styling when loading html page using InnerHTML
Using this code below i can load an html page to a div, in my site, by clicking a link in my menu.
Now, the problem is that when it loads the html page into the div, it loads just fine... but without ...
0
votes
1answer
26 views
jQuery getScript() sometimes works fine, sometimes returns “parsererror” and TypeError Exception
I have strange problem with jQuery (currently 1.9.1 version), I am using getScript() function to load some additional JS library on demand. It loads everytime the same library from the same libraries, ...
1
vote
1answer
82 views
call mixpanel using jquery ajax
I need to use mixpanel Data Export API using jQuery.
According to this: How can I use mixpanel API? and according to mixpanel: https://mixpanel.com/docs/api-documentation/data-export-api#libs-js, I ...
0
votes
0answers
21 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
57 views
Check if username exists - cross browser issues! Suggestions?
I've a registration form and it checks existing usernames and email addresses in the database dynamically. However, it doesn't seem to be working on either FireFox or IE. It's great on Safari and ...
0
votes
1answer
84 views
How to update JSON list without reloading page? [closed]
I have a JSON list containing objects from a database. I'm successfully creating it and using to populate a JQUERY autocomplete, that is working fine. I'm using AJAX to submit the form and persist ...
1
vote
2answers
36 views
JQuery and calling PHP using AJAX using POST
I'm trying to make a Final Exam Review guide for my Physics Class, but I want to be able to view my (and others') previous scores in a text file log. What I have is a pre-made text file called ...
0
votes
1answer
30 views
how open links inside a .load jquery page without reloading page
I have the jquery code below which updates the query when I click on a checkbox, everything works great my only problem is the page I have loaded has a pagination and when I click next or one of the ...
0
votes
1answer
13 views
Security Issue in WCF jQuery AJAX Call via GET method
I'm consuming WCF Services through jQuery AJAX call using GET method.
Since I'm unable to get the WCF Call through jQuery AJAX using POST method work, I'm using GET method. With GET method, the URLs ...
0
votes
1answer
26 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
1answer
10 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;
...
0
votes
1answer
35 views
Session value from php to another php via ajax call
My main purpose is to recover forgot password after asking security question.
DONE: I am checking for the email id(email id from the forgot password screen via ajax post method) in the database, ...









