i jak najade n linka np..., to pokazuje się chmurka a jak od sune się od tego linka to ma chmurka znikać i tak własnie się nie robi :]
pokazuje ale już nie znika, uzywam do tego onMouseOut ale cos nie działa, o to zalaczam mój kod
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1250"> <script type='text/javascript'> function dodaj() { document.getElementById('pobierz').style.display="block"; } function pokaz(x, y, tekst) { dodaj(); } function howaj() { //document.getElementById('pobierz').style.display="none"; document.getElementById('pobierz').innerHTML =" duapduapfaopfagfapgjaigjag"; } function kursor(tekst) { var IE = document.all?true:false; if (!IE) document.captureEvents(Event.MOUSEMOVE) document.onmousemove = getMouseXY; var tempX = 0; var tempY = 0; function getMouseXY(e) { if (IE) { // grab the x-y pos.s if browser is IE tempX = event.clientX + document.body.scrollLeft; tempY = event.clientY + document.body.scrollTop; } else { // grab the x-y pos.s if browser is NS tempX = e.pageX; tempY = e.pageY; } if (tempX < 0){tempX = 0;} if (tempY < 0){tempY = 0;} //window.status = "X: " + tempX + " Y: " + tempY; //document.write(tempX); pokaz(tempX,tempY,tekst ); return true; } } </script> </head> <body> <br /> </body> </html>