Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/11/2010, 17:30
natalia57662
 
Fecha de Ingreso: noviembre-2010
Mensajes: 46
Antigüedad: 13 años, 6 meses
Puntos: 5
Respuesta: Problema con popCalendar

hola tengo la solucion al problema por si alguien le llega a pasar, en el tutorial dice que se debe poner entre <head> y </head> esta linea <script language="javascript" src="popcalendar.js"></script>, entonces yo lo tenia asi:

Código PHP:
Ver original
  1. <?php
  2. ?>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <script language="javascript" src="popcalendar.js"></script>
  7. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
  8. <title>Formato de Taxi</title>
  9. <link href="hoja_estilo.css" rel="stylesheet" type="text/css" />
  10. </head>

y lo cambie asi:

Código PHP:
Ver original
  1. <?php
  2. ?>
  3. <script language="javascript" src="popcalendar.js"></script>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
  8. <title>Formato de Taxi</title>
  9. <link href="hoja_estilo.css" rel="stylesheet" type="text/css" />
  10. </head>


entonces lo unico que hice es cambiar esta linea de lugar <script language="javascript" src="popcalendar.js"></script>, antes del <head>... y sale a la perfeccion inmediatamente al lado del control donde lo llamo... gracias foro!!