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
2answers
41 views
ReferenceError: function is not defined - but it is
I have this javacsript function and it has been working fine, but then I added some code to it and unless I comment out that code it gives the error:
ReferenceError: updateListingForm is not defined
...
0
votes
0answers
10 views
jQuery Form Plugin Not Submitting Data in IE10
I have a form that is submitting just fine in every browser except IE10. I am using the jQuery forms plugin and returning html. The form does submit, but the info in the data attribute is not being ...
1
vote
2answers
23 views
How to get the first element value of the splitted array
How to get the first element value of the splitted array
var supplierpofileselection = $("[id$='_SelectedTabIdsHiddenField']").val();
var arr = supplierpofileselection.split(';');
var arrfirst = ...
-2
votes
0answers
27 views
Update User's Password Using jQuery Ajax
I am trying to be able to update a user's password for a web project. I have created a for which takes the new password from user. The user opens this link using an email which is sended to him. So he ...
0
votes
1answer
15 views
Not able to stop AJAX request called from setTimout
I have seen many posts regarding aborting AJAX requests using .abort() function such as this post, but it just doesn't work for me.
I make repeated AJAX calls after every 30 seconds using setTimout, ...
0
votes
1answer
28 views
how to post variables to file like jquery ajax but with php
I'm working on a project where I have to include a third party application in our system. This application transmitts parameters to a PHP file using jQuery ajax when calling the index.php. The exact ...
0
votes
3answers
53 views
How to pass an object to a MVC controller via Jquery Ajax Get
I am new to jquery and I can't resolve the following problem : I want to pass an object to one of the controllers in my mvc application. Here is what I got so far:
function enterPressed() {
...
2
votes
2answers
20 views
DataContractJsonSerializer exception
I am getting this error when using my class.
Error
Expecting element 'root' from namespace ''.. Encountered 'None' with
name '', namespace
My Class
[DataContract]
public class EntryData
{
...
0
votes
1answer
13 views
JqGrid : File Upload not working
I am trying to upload file with jqgrid, but the is some mistake in my code.
I am using onInitializeForm method.
I am using Jquery Ajax File Uploader
Can anyone do help to me?
You can see Error in ...
-1
votes
0answers
20 views
Loading partial view via jquery not working
I'm trying to load a partial view after some item in dropdownlist is selected.
Right now the partial view doesn't show up, even though I'm being forwarded to a actionlink in controller by my script.
...
0
votes
2answers
15 views
In Ajax Response getting whole page : Spring MVC, Ajax
I am working on a ajax request/response to update a table,
But when Ajax put a call to controller I am getting whole page in response. But what i want is only precise table data which i need to map ...
0
votes
2answers
13 views
Get data from json web service using only javascript and juery
I have downloaded a sample application using this url http://www.zachhunter.com/2010/04/json-objects-to-html-table/.
The part which is working perfectly is :
<script ...
0
votes
1answer
5 views
Adding more item inside filterable portfolio in wordpress theme
In my wordpress theme I have created custom post type page for "portfolio" and implemented Isotop-jquery filtering for categories items (images or video). This works as usual. Now I want to implement ...
0
votes
2answers
18 views
jquery post json data to PHP file
I have a click event where I compose a json data, then I want to POST it to a PHP file for processing. But something goes wrong.
My PHP file is simplified for now looking like this:
<?php
...
0
votes
2answers
18 views
JQuery Ajax POST in Codeigniter
I have searched a lot of tutorials with POST methods and saw answered questions here too but my POST still doesn't work...I thought i should post it here if you guys see something that i don't!
My js ...