what does this error mean Request unsuccessful: nsresult: "0x80004005 (NS_ERROR_FAILURE)

3

I am trying to use colorbox and to avoid conflict i am using noConflict() method, When i load the page i dont get the error but when i open the colorbox window i see below error

Request unsuccessful: [Exception... "Failure" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: http://www.abc.com/assets/js/jquery-1.8.3.js :: .send :: line 8434" data: no]

Below is the code that i am using to initialize colorbox

  jQuery().ready(function(){
  var $j = jQuery.noConflict();
  $j(".cart_items").colorbox({width:"60%",Height:"50%",onLoad: function(){$j('#cboxClose').remove();},onComplete:function(){$j("form[name='cart']").bind("submit");}});
  });
jquery
colorbox

3 Answers

2

f the url you provide is located externally to your server, you have permission problems. You cannot access data from another server with a XMLHttpRequest.

Refer :NETWORK_ERROR: XMLHttpRequest Exception 101

answered on Stack Overflow Apr 19, 2013 by Suresh Atta • edited May 23, 2017 by Community
2

This is an old post but thought worth to mention, I got this error when destination page was on same domain but on HTTPS.

PROBLEM SCENARIO: Calling page: http://sub.domain.com/caller.aspx Destination page: https://api.domain.com/uploder.aspx

SOLUTION: Problem solved when I brought both on HTTPS.

answered on Stack Overflow Jun 9, 2016 by Khub Ram Bhardwaj
0

In my case, I had the <form target="_blank"> on the same origin. The problem was my browser (Firefox) blocked the popup. After giving my website the permissions to open popups (Allow popups) from the browser menu, I don't get that error anymore.

answered on Stack Overflow Aug 17, 2019 by user3502626

User contributions licensed under CC BY-SA 3.0