7

I have been getting this popup message for a while now and was wondering if someone had some insight into why this is happening. When browsing to a Microsoft website a popup appears stating: The target of the callback could not be found. Why is this happening?

I went to this site today and found the problem.

Chrome:

Chrome

Internet Explorer:

IE

4
  • What browser? What operating system? Anything special about your JavaScript configuration? HTTP proxy we should know about? Commented Mar 9, 2012 at 15:18
  • @OliverSalzburg - I am running Windows 7 Professional. This popup happens on both Chome 17.0.963.79 and Internet Explorer 9. When you go to the link do you see this popup message? I have recently installed a fresh OS and remember I had the same issue on the previous installation. Commented Mar 12, 2012 at 15:12
  • No, I don't get the popup here. I also took a quick peak into some of the .js files to see if the string would be in one of them, but it wasn't in the ones I checked. The error message is just too generic to pin it to something specific. It just seems like you're not alone with this issue from what I read on Google. Commented Mar 12, 2012 at 15:22
  • This been bugging me for month, but apparently it's not known as an issue at Microsoft - at least I could not find any information that would indicate so.
    – mafu
    Commented May 11, 2012 at 9:54

1 Answer 1

2

What you're seeing is a JavaScript message about a failed attempt to execute some code (the "callback"). Coders put messages like these in their site to help them diagnose problems while they build them. When you publish the site, it's considered best practice to turn these debugging messages off so that visitors don't see them. Clearly, this hasn't happened.

Generally speaking, this site uses some sloppy and complex JavaScript code, and it's unsurprising that there are some user-facing bugs. Oliver, the .js string might be in a nested lib somewhere... there's a ton of code here (over 20 external js includes, and some repeats).

If you want, you can poke around in IE settings and try to turn off JavaScript warnings, but I would otherwise ignore this message. It's just an awkwardly made website.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .