Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/06/2009, 06:15
Avatar de gjx2
gjx2
 
Fecha de Ingreso: agosto-2008
Ubicación: R.D
Mensajes: 1.153
Antigüedad: 16 años, 7 meses
Puntos: 139
Respuesta: Hipervinculo en un textbox

Yo no diria que no se puede jejejeje

Código Html:
Ver original
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  3. <title>Documento sin t&iacute;tulo</title>
  4.  
  5. <script type="text/javascript">
  6. function pag(pagina){
  7. document.location.href=pagina;
  8. }
  9.  
  10.  
  11. <style type="text/css">
  12. <!--
  13. .link {
  14.     color: #0033FF;
  15.     text-decoration: underline;
  16.     cursor:pointer;
  17.     text-align: center;
  18. }
  19. -->
  20.  
  21. </head>
  22.  
  23. <input type="text" id="ss" onClick="pag('http://google.com')" class="link" value="Google">
  24. </body>
  25. </html>