Hi,
I am trying to call an ASP.NET MVC actionMethod via the JQuery ajax method. My code is as follows:
$('.Delete').live('click', function() {
var tr = $(this).parent().parent();
$.ajax({
type: 'DELETE',
url: '/Routing/Delete/' + tr.attr('id'),
contentType: 'application/json; charset=utf-8',
da...
I have some code on the client that calls an ashx handler using $.ajax() and expects json data from the server. Everything works fine on FF, IE 6,7,8 when I run the application on a local webserver. However, when I deploy the application to a remote test server, IEs stopped working ($.ajax returns a parsererror), while FF continues to wo...
I am working on the following page.
http://www.ranger.ryerson.ca/library/test/steveDev/testcarousel/test.html
it works in firefox, chrome, and opera, but in IE6,IE7, and Safari (the god forsaken browsers) they all give me "parsererror"
My page uses the jquery XML parser, and the bad browsers dont like it. The troubled code is the foll...
fixed;
I'm using a simple jQuery to download text off a server, datatype json.
$.get('http://169.254.100.5/ajax.php',{action:'p',i:'{$data['id']}'},function(data)
{
$.each(data.responses, function(i,response)
{
alert(response.longtext)
}
}
When response.longtext is short (less than 1000 chars like "hello world")...
Hi,
I'm getting a parsererror when using this ajax request in Internet Explorer (7 and 8).
I'm using jquery 1.4.1
$.ajax({
url: 'data.xml',
dataType: 'xml',
contentType: 'text/xml', // also tried application/xml
success: doFunction
});
I read somewhere else that I should set the content type, but I don't know where. The cont...
I have looked at the other questions on here and I dont see an answer for what is happening to my web app. My situation is this: The main web application has numerous sub_folders for events. Each of these sub_folders has a default.aspx page.
Whenever I try to debug any of the default.aspx pages I keep receiving the "Could not load type...
When i try to change the style of my SMFPlayer at runtime it throws this error
Error: Unhandled Error in Silverlight Application
Code: 2531
Category: ParserError
Message: Failed to assign to property 'Microsoft.SilverlightMediaFramework.Core.BitrateGraphControl.AvailableBitrates'.
the only change i made in the style was changing th...