hakan-fan Gelişmiş Üye
Mesaj Sayısı : 79 Kayıt tarihi : 20/11/09
| Konu: TÜMÜNÜ SEÇ KODU C.tesi Kas. 21, 2009 1:44 pm | |
| - Kod:
-
<HTML> <HEAD> <TITLE>Tümünü seç</TITLE> <style> .highlighttext{ background-color:yellow; font-weight:bold; } </style> <script> var copytoclip=1 function HighlightAll(theField) { var tempval=eval("document."+theField) tempval.focus() tempval.select() if (document.all& toclip==1){ therange=tempval.createTextRange() therange.execCommand("Copy") window.status="Contents highlighted and copied to clipboard!" setTimeout("window.status=''",1800) } } </script> </HEAD> <BODY> <form name="test"> <a class="highlighttext" href="javascript:HighlightAll('test.select1')" _fcksavedurl="javascript:HighlightAll('test.select1')">Tümünü Seç</a><br> <textarea name="select1" rows=10 cols=35 > Bu kısa bir yazıdır. Tümünü seç linkine tıkladığınızda bu yazının tamamı seçilecektir. | |
|