Admin DueLLoYöneticisi
Mesaj Sayısı : 928 Doğum tarihi : 06/07/90 Yaşı : 34 Nerden : Antalya İş/Hobiler : Webtasarım - Öğrenci Lakap : Site sahibi Rep Puanı : 735008
| Konu: Error Report (ing) Cuma Ara. 04, 2009 8:33 pm | |
| Sayfanızda bulunan JS hatalarını düzgün bir şekilde göstermenizi sağlar. - Kod:
-
<!-- TWO STEPS TO INSTALL ERROR REPORT:
1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document -->
<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
<HEAD>
<style type="text/css"> <!-- .small { font-size: .7em; color: red; background: inherit; } --> </style>
<script type="text/javascript"> <!-- /* This script and many more are available free online at The JavaScript Source!! http://javascript.internet.com Created by: Iiro Krankka :: http://www.taikasilma.com/ */
function hiderror() { document.getElementById('err').innerHTML="" }
function errorCode() { document.write("<span id='err' onclick='hiderror()'></span>");
window.onerror=Error; function Error(msg,url,l) { error="<strong>A Javascript error has occured!<br>" error+="____________________________________________________<br><br>" error+="Error message: " + msg + ".<br>" error+="URL: " + url + "<br>" error+="Line: " + l + "<br>" error+="____________________________________________________<br></strong>" error+="<span onmouseover='hiderror()' class='small'>[mouseOver here to hide error message]</span>" document.getElementById('err').innerHTML= error; self.scroll(0,0); } } // --> </script> </HEAD>
<!-- STEP TWO: Copy this code into the BODY of your HTML document -->
<BODY>
<table width="50%" align="center"> <tr><td> <div id="all">
<!-- Place the line of code shown below on the page where you want the error message to be displayed. --> <script type="text/javascript">errorCode();</script> <br><br> <b>An example:</b> <input type="button" value="Free coke!" onclick="abbbblertti('ddd');"> </div> </td></tr> </table>
<p><center> <font face="arial, helvetica" size"-2">Free JavaScripts provided<br> by <a href="http://javascriptsource.com">The JavaScript Source</a></font> </center><p>
<!-- Script Size: 2.03 KB --> | |
|