Search code examples
javascripthtmlinternet-explorertablesorter

IE JavaScript "Message From Webpage" Errors, "Checking If Value was Empty.."


I've built an internal webpage that on Firefox is running fine with no issues, but on IE is throwing a load of "Message from webpage" errors.

They are as follows:

  • Built headers:,0ms
  • [object Object]
  • Checking if value was empty on row:0 (several times)
  • column:0 parser:text column:1 parser:digit column:2 parser:digit column:3 parser:digit column:4 parser:digit
  • Building cache for 5 rows:,0ms

So, a) why are these popping up on IE and b) Is there a way of stopping these from popping up on IE?


Solution

  • The problem is from javascript. Do you have a tablesorter or something similar?

    I had the same problem.

    if you have something like this:

    <script type="text/javascript">
    $(function() {
        $("table").tablesorter({debug: true}); -> Set this value to False
    });
    </script>
    

    It worked for me.