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.

learn more… | top users | synonyms

1
vote
1answer
11 views

Datepicker using Jquery loses focus to the textbox after date selected.

Datepicker using Jquery loses focus to the textbox after date selected. I am using jquery-ui-1.9.2.When a date is selected the focus not coming to the textbox.Any solution?
0
votes
1answer
4 views

Cancel form file upload submission

I work on a file upload form with some additional data and want to have a cancel button. My site is running on Django. I submit the form over the normal way with a submit button without Ajax but I ...
0
votes
0answers
3 views

Jquery Ajax with callback - Timer based Multi-File upload

I have a file upload form where i can drag and drop multiple files in one go and upload them. What i want to achieve is Add a configurable time interval which the file upload has to wait for before ...
-1
votes
1answer
21 views

How to submit a form with ajax if two parameters are set

I have a simple rails form and want to submit the form when the two parameters are set without the click of a submit button. How can i write a simple jquery ajax request to do this. my form below is ...
0
votes
1answer
20 views

posting serialized data with jquery ajax in IE6 not working

when i post some data with jquery ajax command in ie6 and i print_r($_POST) php print an empty array.. i can alert this data with alert function in ie by adding this line of code: ...
0
votes
0answers
19 views

jCarousel load content with ajax

I made a jCarousel on my home page with all the feature products, but if the feature products are 100 in number the home page will load very slowly so I decided I will load the content with ajax, I'm ...
0
votes
0answers
14 views

legend creation using ajax method to get json data

I am working on rickshaw and I am trying to fetch the elements to create a legend. and I have used ajax method to call the json data, data is working fine as ajax method is used, but now the legend ...
-2
votes
1answer
13 views

how to access ajax response which is a array of structures?

var request = jQuery.ajax({ url: "calculation.cfm", type: "post", traditional : true, contentType: 'application/json', data:JSON.stringify(arrayA), success: function(e){ ...
3
votes
1answer
38 views

How can I limit the scope of a Javascript counter variable by object?

I'm using @Phrogz's quick script to cancel all but the last AJAX request using the following: var fooXHR, fooCounter=0; $('div').bind( 'click', function(){ // Do the Right Thing to indicate that we ...
0
votes
0answers
11 views

Access multiple response variables outside of FB Api Call

I am new to using the FB Api and until now I figured out that I cannot access response variables outside of the FB API call since it is an asynchronous call. However I need to access them somehow. I ...
0
votes
1answer
24 views

How to pass parameters in WCF Json service which doesn't have .svc file?

I am using a .cs file instead of .svc to call my wcf service. It works fine for service methods without parameters , but not for methods with parameters. Below is the code: service.cs using ...
0
votes
2answers
36 views

How to clear the HTML content of some id in jquery?

I'm using smarty template, php and ajax. I've following code snippet from my smarty template: <td align="left" id="subject_container" colspan="2" valign="top"> <form> <table ...
-4
votes
0answers
21 views

What do you prefer? UJS or Coffee Script [closed]

What do you prefer or what could be a more best practice for a rails 3.2 app? A UJS structure with js.erb for js returns or all the logic of javascript separated by files/models in the assets ...
0
votes
2answers
16 views

Sencha Touch Ajax Request Error: Origin null is not allowed by Access-Control-Allow-Origin.

I am making an Ajax request to remote server and sending parameters as POST method. But I am getting following response: **"MLHttpRequest cannot load ...
0
votes
1answer
11 views

Pulling object properties out of arrays and converting to string

I am currently working on a chat app and am stuck on getting properties out of an array of objects. I first sent an ajax request with json as the datatype. When I check my (data) parameter in my ...
0
votes
0answers
12 views

Mathematical equations with jQuery UI Slider

I have multiple sliders and it updates the total slider accordingly per each slider. When I go to slide another slider it subtracts it again from the original total value and not the updated value ...
0
votes
0answers
17 views

Dynamicaly populate up to 3 dropdowns based on previous dropdown selections

I know similar questions have been asked and I have a sample fiddle using some of my known years, months and days as a sample. Instead on manually adding select option divs for each year, I'd like the ...
-8
votes
0answers
38 views

Multiple form submit and retrieve results separately [closed]

There is a gallery website. I want users be able to submit comment for each item. Every six items load in one page and there is a form for each one. Form have to be sent to server-side and retrieve ...
0
votes
4answers
47 views

New to async programming. How do I get things to happen in proper sequence across different objects?

I'm trying to refactor my program. I had made it work by making the AJAX calls synchronous, but now I'd like to do it the proper way. What's happening is that headline is instantiated with a new ...
1
vote
0answers
31 views

Evil Firefox Error — “A parameter or an operation is not supported by the underlying object”

I'm trying to figure out what the hell is going on here. I've been at it for hours now and can't seem to get a grip on why this is happening. I'm making a few ajax calls, and I keep getting this ...
1
vote
1answer
15 views

jqueryui Tabs with Tablesorter

I'm using jquery ui tabs with the tablesorter 2.0 plugin to obtain sort abilities on a dynamically populated html table but the sort only happens on the first tab upon page load. The other tabs do not ...
1
vote
1answer
20 views

Date not being displayed properly when using jQuery mask

I am trying to use this jQuery plugin as an input mask on my ASP MVC edit page. However, no matter what the value is being stored in the database, the month is always displayed with two zeros: ...
0
votes
0answers
19 views

keep selecting same iframe

I have some iframes that are created with jquery each iframe has a select button, but when i click the button from that iframe i keep getting the first iframe. $("<iframe />" , { src: ...
1
vote
4answers
26 views

Load ajax without click button

I have a jquery that makes an AJAX call by clicking a button, but I want them without pressing the button, it should work when loading the page. This is button <div> <form method="post" ...
0
votes
0answers
16 views

ReferenceError: jsonp not defined

So I am making an ajax request in jquery like this: $.ajax({ url: url, dataType: "jsonp", jsonpCallback: 'callback', success: function(data) { ...
0
votes
1answer
19 views

How to get intermediate feedback from my REST service for a single GET request

In my user interface, I am trying to implement a progress bar which shows the percent of completion of work for a user request. My back-end REST service needs to do a lot of computations; hence it is ...
0
votes
1answer
25 views

Getting the “no type was found that matches the controller named” error message during Ajax Request

I've seen a lot of topics about this, but unfortunately I believe that each case is a different case (or most of them), and I really would love some experts opinion about my case in particular since I ...
0
votes
0answers
18 views

jQuery ajax request using datatype jsonp still yields a 403 forbidden error

I am spinning around this problem for a while and have looked up solutions online, following them hasn't really solved the problem. The context is a login page, where I must validate a user upon the ...
2
votes
4answers
80 views

Jquerys .on('click') is only firing once then stops

I have searched on here and google for a solution to no avail, lots of similar posts but mostly people not using .on() or people missing end });'s etc As in title I am using .on('click') and it will ...
0
votes
3answers
48 views

jquery ajax data result dont show

My js file below; $('#DetailMaxGuest').change(function () { var result = $('#DetailMaxGuest option:selected').val(); $('#DetailMaxGuest option:selected').val(result).attr('selected', ...
1
vote
2answers
56 views

Passing variables between two ajax calls in PHP

I'm creating a personal website to help with task management in a project environment. I've got a mySQL table (tblProjects) that contains the following fields; id, ownerID, projectName and ...
0
votes
0answers
7 views

jquery's getResponseHeader(“Content-Length”) returning 0 on IE9

using latest jquery. I am retrieving an image from the server with an asynchronous request $.ajax({ url: handlerUrl }).done(function (data,textStatus,jqXHR/*XMLHttpRequest */) { ...
0
votes
1answer
28 views

Download Excel file via AJAX MVC

I have a large(ish) form in MVC. I need to be able to generate an excel file containing data from a subset of that form. The tricky bit is that this shouldn't affect the rest of the form and so I ...
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 ...
0
votes
0answers
9 views

how to update the url using ajax pagination in cakephp 2?

Good morning, I created a pagination via ajax using cakephp2.3, it is working properly. The problem is that the page number is not being updated in the url. He is getting this way: / ...
-1
votes
0answers
37 views

Displaying Progress Bar For Long Running Processes using ASP.NET AJAX

My client told me to display a progressbar for long running process. I did it with jquery and css and successfully got progress bar. But they not happy with progress bar and asked me to use ajax to ...
0
votes
0answers
46 views

jquery ajax when again post clear data

I have 2 script for apart schedule. var kisi; $('#DetailDatepickerEnd').datepicker({ dateFormat: 'dd MM yy', defaultDate: "+1w", changeMonth: true, onSelect: function (selectedDate) ...
0
votes
1answer
57 views

$(document).ready doesn't work however page is loaded

As you can understand my title, browser doesn't call the GetReleatedProducts method. I put breakpoint $(document).ready(function () line but it doesn't enter into ajax call. I checked that I have ...
0
votes
1answer
25 views

jquery closure ajax call, $(this) is null

I'm new to jquery, so this might seems simple but i can't see the trick :p I'm using jquery 1.2.6 ( and i can't upgrade it :/ ) that's why I'm using the livequery plugin. The context is just an ...
2
votes
2answers
29 views

jQuery .on() not working with jquery-ujs

So I have a rails app that renders views via jquery-ujs. (data-remote in the URLs, then a load of js.erb files with things like: $('#whatever').html('<%= j render("form") %>'); In my main JS ...
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 ...
0
votes
0answers
20 views

Two JQGrid in one page

i am new in ajax, jquery. right now i am using two jqgrid for rendering data. jQuery('#oldlocations').jqGrid( { url:"/", datatype : 'json', ...
0
votes
0answers
13 views

How to do page transitions in a popup using jquery?

We have a web application which uses jquery. We have to add a new module which will open in a popup. Then all the pages in that module will open in the same popup window using ajax. We will have ...
4
votes
4answers
72 views

jQuery complete replace DOM of element with another DOM - faster way?

I'm using jQuery's AJAX for getting new content from server. Data is loaded in JSON: $.ajax({ url: url, data: { 'ajax': '1', }, dataType: 'json', success: somefunction }); ...
-5
votes
0answers
25 views

i want to convert my site's reply form to pop up reply form [closed]

i am using osclass.org classified offersvalley.in i have little knowledge about code's i am trying since yesterday could not find solution thanks friend i post here code pls <div ...
-2
votes
1answer
24 views

stop form process with ajax if input value is empty [closed]

My ajax code below will stop the form pprocess if an input value is empty, then showing an popup alert. The problem is, the process will continue after the alert popup closed. How can i stop the ...
0
votes
0answers
58 views

jQuery .click() on radio button not working … sometimes

I am having an issue with dynamically setting a radio button...some of the time. I am reading in information from a database to auto-populate a form. I can get some of the radio buttons to behave ...
0
votes
1answer
13 views

fatal error:undefined function base_path() and path_to_theme in drupal-7

I have created the custom page and put it in misc folder.when I call this page through ajax is showing fatal error:undefined function path_to_theme and base_path. I have include the bootstrap.inc file ...
0
votes
1answer
30 views

No result appear in the autocomplete

The action return a JSonResult and the content is correct. I missed something in the autocomplete code ? HTML : <input type="text" class="span12" id="mytextbox" /> The javascript : ...
0
votes
0answers
25 views

JSON string requested using AJAX from WCF service missing .d and __type attributes

I am using jQuery AJAX to call a WCF service. The service retuns a JSON string that represents an instance of a custom object. What I'm writing is meant to replace some current functionality in an ...

1 2 3 4 5 297