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:
So, a) why are these popping up on IE and b) Is there a way of stopping these from popping up on IE?
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.