javascript - There is an error: access is denied -


at moment doing migration of awebsite(vs2003 vs2010), build everytime run on ie8 returns "there error: access denied". code:

$(function() {              $('#container-1').tabs();             $('#container-2').tabs(2);             $('#container-3').tabs({ fxslide: true });             $('#container-4').tabs({ fxfade: true, fxspeed: 'fast' });             $('#container-5').tabs({ fxslide: true, fxfade: true, fxspeed: 'normal' });             $('#container-6').tabs({                 fxfade: true,                 fxspeed: 'fast',                 onclick: function() {                     alert('onclick');                 },                 onhide: function() {                     alert('onhide');                 },                 onshow: function() {                     alert('onshow');                 }             });             $('#container-7').tabs({ fxautoheight: true });             $('#container-8').tabs({ fxshow: { height: 'show', opacity: 'show' }, fxspeed: 'normal' });             $('#container-9').tabs({ remote: true });             $('#container-10').tabs();             $('#container-11').tabs({ disabled: [3] });              $('<p><a href="#">disable third tab<\/a><\/p>').prependto('#fragment-28').find('a').click(function() {                 $(this).parents('div').eq(1).disabletab(3);                 return false;             });             $('<p><a href="#">activate third tab<\/a><\/p>').prependto('#fragment-28').find('a').click(function() {                 $(this).parents('div').eq(1).triggertab(3);                 return false;             });             $('<p><a href="#">enable third tab<\/a><\/p>').prependto('#fragment-28').find('a').click(function() {                 $(this).parents('div').eq(1).enabletab(3);                 return false;             });          }); 

i have checked show every error in ie8 advanced settings, , far gives information regarding error:

webpage error details  user agent: mozilla/4.0 (compatible; msie 8.0; windows nt 5.2; wow64; trident/4.0; .netclr 1.1.4322; .net clr 2.0.50727; .net clr 3.0.4506.2152; .net clr 3.5.30729; .net4.0c;.net4.0e) timestamp: mon, 6 may 2013 02:48:48 utc   message: syntax error line: 2 char: 1 code: 0 uri: http://localhost:1038/hrsystems/login.aspx?  returnurl=%2fhrsystems%2fscripts%2fjquery-1.1.3.1.pack.js   message: syntax error line: 2 char: 1 code: 0 uri: http://localhost:1038/hrsystems/login.aspxreturnurl=%2fhrsystems%2fscripts%2fjquery.history_remote.pack.js 

login.aspx run empty weird, current website using working fine though.

thanks in advance.


Comments