Sahra ForumSahraSiteSahibi
Mesaj Sayısı : 428 Tecrübe : 1091 Rep Puanı : 29 Kayıt Tarihi : 07/07/11 Yaş : 32 Nerden : Bilmem Lakap : gececi
| Konu: Sitede Mause İle Nereye Tıklarsanız X-Y Kordinatını Söyleyen Kod. Cuma 29 Tem. - 17:04:17 | |
| - Kod:
-
<html>
<head>
<script type="text/javascript">
function show_coords(event) {
x=event.clientX;
y=event.clientY;
alert("DestekBs.Tr.gg
X Kordinatı: " + x + ", Y Kordinatı: " + y
);
}
</script>
</head>
<body onmousedown="show_coords(event)">
</body>
</html>
| |
|