Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SCRIPT16389: Unspecified error. jquery.min.js, line 2 character 91826

Another Internet Explorer Javascript error. I can't debug as well since Internet Explorer's debugging tool is even slower than Eclipse which is quite an achievement.... Can anybody see what's causing the SCRIPT16389: Unspecified error. jquery.min.js, line 2 character 91826 error?

like image 537
bicycle Avatar asked Dec 17 '12 10:12

bicycle


1 Answers

You say you are using this code:

 $(document).ready(function() 
  { $.ajax({type: "GET", url: "\/slider.php", }).done(
       function( html ) { 
        $("#jui").html(html); 
        if ($("#vpo").html().length == 0) activateSlider();
  });

remove the backslash from the URL. I'm not completely sure why this causes an error, but IE traditionally handles backslashes in URLs differently than other browsers.

like image 111
Pekka Avatar answered Oct 14 '22 01:10

Pekka