Thursday, February 3, 2011

Avoid Javascript Errors


It is sometime unavoidable to get rid of javascript errors. To get rid of it just go through following code.
<head>
<script language="javascript">
function stoperror()
{
  return true
}
window.onerror=stoperror
</script>
</head>

No comments :

Post a Comment