jquery-ajax

how to send an ajax request on clearing text box using jquery typewatch?

Hi I use jQuery typewatch plugin to send an ajax request when the user stops typing in the text box. If the user enters something the result will be filtered based on that. if the user clears out the text box, i want to load the whole result how do i do that? I tried setting the captureLength to 0, even tried to set the minTextLength on...

AdBlock is killing my XMLHttpRequests ... work-around?

A quick Google search shows that this is a common problem: AdBlock Plus for Firefox kills XMLHttpRequests. Throws an exception: "Component returned failure code: 0x805e000a." However, the only prescription I could find is to send random parameters in my ajax call but that didn't work. I've renamed file extensions, tried just about ...

Fill textboxes based upon current Dropdownlist (database items) selection (asp.NET MVC)

I have a dropdown box in my view which is populated with objects from database. Now what I want to do is, based upon selection in the Dropdown fill various textboxes with property values of the object selected in the dropdownlist. There are numerous examples where you copy the selected dropdown value in the textbox using JQuery / JavaS...

jQuery AJAX request slow even though all previous requests aborted

I have a search filter that fires an ajax request to update the result set upon changing filters. It often happens that the user will change many filters in one go, firing off many AJAX requests. So I decided to abort previous requests if a new one is made (by using the ajax.abort() function). Now... Firebug shows all those requests as...

Can't Manipulate data inserted from an ajax request in jQuery

After calling the server and turning the data it returns into a table. I insert it into the page using jQuery's .html() syntax. After that the data appears in the page but I can't manipulate it using jQuery. heres the code: <html> <head> <title>testJavaScript</title> <script type="text/javascript" src="jquery-1.4.2.js"></scrip...

PHP/jQuery: Ajax call & where to have my code?

Hello. So im making a "delete" button to my commentsystem.. I want to make it smart, so it should run a ajax call to remove the comment. Now I have tried out myself, this and have gotten this far: <?php echo "<a href='#' onclick='javascript:DoCommentWallRemove()' title='ta bort inlägg'> <span class='removeWallComment'></span> </a>"; ?>...

jQuery .load() callback function fires multiple times

the first time the code is executed it correctly produces: load complete but the 2nd time it produces: load complete load complete the 3nd time it produces: load complete load complete load complete etc... so the 20th time the load function completes the call back function gets fired 20 times. $('#image-tag').load(function () { ...

Return a PartialView from $.Ajax Post

I have the following code; $.ajax({ url: "/Home/jQueryAddComment", type: "POST", dataType: "json", data: json, contentType: 'application/json; charset=utf-8', success: function(data){ //var message = data.Message; alert(data...

More Ajax / MVC weirdness

I've been puzzling over some odd behaviour with my MVC2 project for the last few nights. I have an MVC action result that accepts a project ID and a complex Json object, looking like this: [HttpPost] public JsonResult AddStory(int projectid, Story story) { try { Project prj = repository.Single(p => p.ID == projectid); ...

can the url: contain a variable in a jquery ajax call

I have the following Jquery ajax call but would like to put as the Url a variable instead of a string. Is that possible? For instance instead of make10.xml can I have a variable which equals to "make10.xml" or some other string? $.ajax({ type: "GET", url: "make10.xml", dataType: "xml", success: function(xml) { var s...

jQuery variable scope?

Why can’t I assign ajaxResult to result? console.log(result); works correctly which is inside the success option and appears second in the console. but result of the last of console.log(result); is undefined and first appears in the console. what is wrong with this? $(function () { var result; $.ajax({ type:...

Find out how long an Ajax request took to complete

What is a good way to find out how long a particular $.ajax() request took? I would like to get this information and then display it on the page somewhere. ANSWER??:::: I'm new to javascript, this is the best that I could come up with if you don't want to inline the "success" function (because it will be a much bigger function) Is ...

jQuery: Firing an AJAX event local to the element that is loading data

I've been playing around with subscribing elements to AJAX events in jQuery. I have an element that I am using to load AJAX response's. This element is only displayed IF there is data pertinent to the current context of the program. So, I thought it would be nice and easy to .show() whenever an AJAX request has completed on it and hide...

Multiple AJAX requests are not calling onSuccess until all requests are done

Ok, so I'm working on a little photo gallery that will load a set of images using AJAX. Basically it will load a 'loading.gif' placeholder image, make an AJAX request to generate the thumbnail image. PHP page generates the thumbnail and sends a confirmation that the image has been generated and the path of it. My onSuccess should then...

Replacing asp.net ajax controls with jquery

I have a solution that uses accordian and tab controls , amongst others. Is it worth swapping these out and using the jquery controls. What are the benefits. Is it best practice to load one tab at a time with data? Thanks ...

jQuery.Load() not triggering Request.IsAjaxRequest in ASP.NET MVC2

Hi I'm using the Jquery full calendar plugin, and i want to be able to click on an event and the details of the event to be populated via AJAX into a div with the id of #details. here is my controller action that i'm trying to load. When debugging, the action does not consider the incoming request to be AJAX and returns the full view ...

How can I pass a list of objects to an ASP.NET MVC action using jQuery?

I have defined an object type in .NET that I want receive in a List<> as the input to an ASP.NET MVC action method? Here is the action method and class I'm trying to receive. public class WhereClause { public string ColumnInformation { get; set; } public string WhereValue { get; set; } public string AndOr {...

jQuery/UI/Tab ajax not loading flash cfcharts in IE7/8

Hello, I have a coldfusion page that uses JQuery UI TAB to load another coldfufion page which includes a cfchart in flash format. But this works completely fine in FF.(everything was loaded, flash cfchart, tables ...) <li><a href="xxx.cfm?param=#xxx#">XXX</a></li> However in IE: all of the html elements that are generated with the fl...

jQuery script not working in IE

I have having a problem with a jquery script showing up in every other browser except IE. Below is a very very very simplified version of the script and this wont even show up. Please help Ive been working on this problem for about 2 weeks now <script type="application/javascript"> $.getTime = function(zone, success) ...

Json contentType: breaks Jquery POST to MVC controller

I'm was trying to fill in a description field when a drop-down was selected. I Got it working but I couldn't use a Json Content Type. This works <script type="text/javascript"> $(document).ready(function () { $("#ddl_id").change(function () { var test = $("#ddl_id").val(); $.ajax({ typ...