0
votes
2answers
31 views

How to stop ajax loader

I have this implemented: $('#loader').hide() // hide it initially .ajaxStart(function() { $('#loader').show(); }) .ajaxStop(function() { ...
0
votes
1answer
25 views

Jquery ajax method undefined

So my problem is that data returned in success method is undefined... Here is my jquery code: $('document').ready(function(){ $('#save').click(function() { var dataString = ...
0
votes
1answer
9 views

TypeError: field_errors.join is not a function

I am having a small issue with my ajax success call. In the success call I have the following: if (data.success) { window.location.href = ...
0
votes
2answers
62 views

Why ajax request is getting aborted …?

I am sending ajax request to server $.ajax({ type: "POST", data: checkin_push, url: api_url + 'file.php?token=' + last_token + '&date=' + dated, dataType: "json", timeout: ...
2
votes
1answer
15 views

Servlet: Not able to get the response back to ajax function(in success block)

From jsp i need upload file through ajax call that intern make a request to servlet and upon completion of upload process i need control back to ajax functon so that i can show all imported data to ...
0
votes
1answer
22 views

Chrome: Uncaught SyntaxError: Unexpected identifier, Firefox:SyntaxError: missing ] after element list

I am getting the following JavaScript error: In Chrome: Uncaught SyntaxError: Unexpected identifier and in Firefox: SyntaxError: missing ] after element list I am making an ajax query to get ...
0
votes
1answer
23 views

Ajax jquery popup data binding passing issue! MVC4

View page has a web grid and each grid row having more details has its row bonded with the primary key of the grid row. I have a buttons at top of this view, which help me perform some actions. Now on ...
0
votes
3answers
39 views

How to change image src depending on whether image exists

I'm trying to load one of two different thumbnail images according to whether or not an image corresponding to a database entry and identified with an id as part of its name exists on the system. ...
1
vote
4answers
31 views

In JQUERY how to find that all ajax calls in a page have been completed?

In JQUERY how to find that all ajax calls in a page have been completed? I want to execute a method after all the ajax call are completed.
0
votes
2answers
24 views

Jquery ajax post with timer event?

script $(document).ready(function () { var meter_id = $("#MeterReadingTypes li a.link_active").attr("id"); var range_id = $("#DateRangeTypes li a.link_active").attr("id"); ...
0
votes
2answers
27 views

jquery json reorder with leading zero

I've a bunch of data that is sorted by weeknumber. The php script uses $week = date('W', strtotime($date)); to get a weeknumber with leading zero's. (thats not in the spec, but that is what I ...
-5
votes
0answers
39 views

Contact form not appending with PHP/jQuery [closed]

I am fairly new to jQuery and very new to PHP. I am trying to make a contact form for my portfolio website and I used a tutorial in doing so which can be found at ...
0
votes
1answer
24 views

Dynamically added Twitter Bootstrap popover with <br> does not break lines

I have a large paginated table. Each row shows a client with it's information. I use an AJAX call to check if there are notes for a client. If there is a note for a client an icon gets added. It is ...
0
votes
1answer
14 views

HighCharts series data won't load array

I am trying to implement HighCharts into my app, but when I get the data from my server and put it into an array, the series data parameter doesn't read it, and I get nothing on the y-axis. Here is ...
0
votes
2answers
35 views

why does jQuery.load doesn't work for this page?

I have some inner html that needs to be inserted into a div which has the class modal-body like this: $(".modal-body").load("http://cistrome.org/finder/util/pure_meta?did=1660"); Though this page ...
1
vote
1answer
23 views

jQuery AJAX can't work when injected on external URL?

I am currently trying to retrieve some data from book search sites and populate a personal database with that data. My idea is to inject the necessary jQuery on the page, so that when I see a title I ...
0
votes
0answers
16 views

Will javascript structure makes an ajax request faster?

Lets say I solve a common ajax problem (looping ajax and solving the async problem{not sure if this is a problem}). Like this. var users = [{username: 'foo', email : 'foo@email'}, {username: 'bar', ...
0
votes
0answers
15 views

JQuery UI AutoComplete for Location using geonames

I've been looking into this JQuery UI code, trying to understand it. http://jqueryui.com/autocomplete/#remote-jsonp It's an autoComplete input for cities which pulls data from geonames through AJAX. ...
0
votes
2answers
36 views

Articles Directory [closed]

Hi all I have a big question. I am currently a php beginner so the knowledge is not as experts here. But I like to learn. My problem is this, I am creating a articles directory. My scenario is this, ...
0
votes
0answers
20 views

my code raises TypeError (can't convert nil into String): in production environment on AWS only, works fine on my local development machine

I apologize if my question is stupid. I am still a bit of a noob with all of this. Basically, I have the following problem with my app. I have a form that gets submitted in a modal window. The user ...
2
votes
2answers
35 views

Disable form inputs after ajax submission

I have a form that submits via Ajax. After the user sends the form, the text changes displaying the form was sent successfully and then shows the form filled out. I want to display the form but I ...
0
votes
1answer
49 views

Delaying progress indicator

I have the following code in my layout page so whenever an Ajax request is sent, it'll show a progress-please-wait panel. but I'm not sure how to put a delay to it. $(document).ajaxStart(function ...
1
vote
3answers
39 views

jQuery Ajax request not reaching PHP script

I'm trying to create a mail form which has javascript validation. The form values should be send with ajax to a php script which emails the data to an emailadress. However, Neither the php code, ...
1
vote
1answer
30 views

jQuery .empty() causes AJAX populated div to blink

I am writing a dynamic website that uses AJAX to check the status of inventory items between front-end and back-end employees of a firm. One employee submits a request and the people in the back see ...
-1
votes
2answers
35 views

Making certain randomized data is unique [duplicate]

I'm pulling in three randomized records via an API and I would like to ensure that none of the records are the same. How can I edit my code so that it checks that the records are unique? Here is my ...
1
vote
2answers
45 views

How do you insert row numbers into ajax functions?

I have the following function: function getvalues(){ var sendid = $('#id').val(); $.ajax({ type: "POST", url: "ready.php", data: {sendid} }).done(function( result ) { $("#msg").html( "worked" ); }); ...
0
votes
1answer
48 views

jQuery Ajax always returns 'object' [duplicate]

I have some code that validates a form using Prototype but I want to add a jQuery ajax function to check if the username already exists in the database. However, the value being returned by jQuery is ...
0
votes
1answer
30 views

Form error handling ajax depending on user input

Couldn't find any valueable answers on this question: Its a pretty basic ajax form process handler: $(document).ready(function(){ }); function functionToUpdate(id) { var data = ...
0
votes
0answers
14 views

Saving Data as JSON feed from fullcalendar

I'm wanting to save the objects that are created to the json-feed file, using $.ajax but nothing is being saved. The object is placed on the calendar but when I check the JSON feed in my .php file, ...
0
votes
2answers
31 views

Jquery - After .append, .hover on other element not working

I wrote a bit of code to handle the insertion of a comment via AJAX. Once you have entered the comment, having received the HTML from the server and use .append() to insert it into the DOM, does not ...
2
votes
2answers
17 views

Jquery selecting checkbix and building a url to be send to database

Jsfiddle --- > http://jsfiddle.net/Xytvg hello every body - GUYS i am still learning jquery i am just beginner i am have hard time to get this done.... let me explain every checkbox has id and ...
0
votes
0answers
46 views

Pass a variable from one page to another PHP, jQuery, AJAX

I am submitting a form with jQuery AJAX. Each time I press submit I am getting the same error (in the console its RED). When I am trying error: function(response) { ...
0
votes
1answer
11 views

$.ajax unexpected token error on tomcat server (GWT)

we are currently working on a GWT Project and ran into an unexpected token error called by .parseJSON in this function after compiling and running the project on a tomcat server. In dev mode on ...
0
votes
1answer
33 views

jquery ajax progress deferred

I've been working on an ajax file loader that uses html5 and the latest version of jquery. I'm confused regarding the use of the progress callback with the new promise based ajax. For example, the ...
0
votes
1answer
47 views

Uncaught syntax error: Unexpected token < , ajax call

<script> (function(){ var searchURL = 'http://en.wiktionary.org/wiki/search'; $.ajax({ type: "GET", url: searchURL, dataType: ...
1
vote
2answers
36 views

Loop with load jquery

I make this script. var arr = $('.siblings-list li').map(function() { return $(this).text() }); for (var i = 0; i < arr.length; i++) { $('.main').load(arr[i] + ' .section', function() { ...
0
votes
0answers
20 views

Ajax not forwarding data to servlet

The dropdown in the HTML file gets populated dynamically. Here, I am passing the form value to the servlet via Ajax and the servlet generates the table data which gets appended to the table. The ...
0
votes
0answers
39 views

Browser refresh and back buttons cause problems in AJAX-based-template

I am new to jquery as well as stack overflow.I would like your help in something that might be simple. I tried some solutions proposed but none worked for my case. I am trying to use the History.js ...
0
votes
0answers
25 views

Multiple nested jQuery Ajax Calls possible Bug?

On my current project I am using the Google Feed API to get mixed JSON/XML data for a feed. As I want to parse this data on my server before it gets shown to the user I made the following concept. ...
0
votes
3answers
60 views

AJAX:How can I redirect page and then refresh once

$(document).ready(function() { $("#postform").live("submit",function(){ var datastring=$(this).serialize(); var postid=$(this).("post_id").serialize(); $.ajax({ type: ...
0
votes
1answer
17 views

Submit form with html5 validation and jquery ajax

I have a problem with validation of my form because if I use required attribute in each element of form and press submit the form is not processed until it is fill out the form, but in my file I add a ...
1
vote
2answers
45 views

Preventing form from refreshing page Javascript

im quite bad at javascript, and i am trying to make a AJAX call, but i get my value from a form feild, and it just refreshes the page, cant even observe if the AJAX call is succesfull. Here is my ...
3
votes
2answers
36 views

Loading Wordpress posts through Ajax

So, I have this <div> in which my blog posts are contained. Its class is .post. What I want to do is that every time someone clicks on the recent posts at the widget area, the content is loaded ...
0
votes
2answers
30 views

Request URI too large (414)

I am sending a GET request via $.getJSON, and the data sent is really big. I need to get a result after the processing of my data, so POSTing it instead doesn't seem to be a solution. Any idea? The ...
0
votes
0answers
22 views

Adding variables with decimals

I have the following code that I'm using to add different variables to a "base price". The variables are coming from a separate dropdown menus and my issue is that in the dropdown some of the prices ...
0
votes
0answers
36 views

Jquery Button Mouse Hover

I make this script but i have some problems ... if i put the mouse first time its not working but if i remove the mouse and i put again its working ... hope someone can help me fix this problem my ...
0
votes
4answers
36 views

How to call ajax and output its result inside div and textarea?

I am trying to make load more button. My goal is to call ajax and put the response inside div and textarea.how to place the response inside div and textarea? Currently the response only shows in ...
4
votes
4answers
83 views

jquery ajax does not complete

I'm having a trouble with ajax requests and server responses: $.ajax({ url: servurl, dataType: "jsonp", data: {... }, crossDomain: true, error: function(){}, success: ...
0
votes
4answers
37 views

Jquery Make Array Key To Be Var

What I'm trying to do its add array on my function and the key to be var key, example I send this to my function: var obj = { "div_id":"#Menu_Videos", "div_class":".wideDropdown_Menu_Videos", ...
0
votes
0answers
12 views

Is it possible to call WCF ,which uses Windows or NTLM authentication ,from jquery ?

After trying for the whole day i was finally unable to Call a Cross Domain WCF Service with Basic authentication from jquery. You can find my previous question about this here. Unable to add ...

1 2 3 4 5 588