Experts Says:
“callback function throws an exception in IE8 mode. This means that even if your code is written defensively, it will get called and cause an error”.
the only solution is to remove call and use try/catch method to rectify this error.
This problem could also happened in jQuery.
-
Example:
-
<script>
-
function callback_create_error()
-
{
-
//some code;
-
}
-
</script>
-
<a href="javascript:void(0)" onclick="try{callback_create_error();}catch(e){alert(’error found!’)}">test</a>
Post a Comment