Witam, mam problem ze skryptem kalendarza, w Operze i FF otwiera się bez problemu, w IE niestety nie, komunikat "Wiersz 96, Znak 2, Nieprawidłowy argument".
Dodam jeszcze że drugi skrypt samego kalendarza ładuje się w IE tylko najważniejszy pierwszy nie. Poniżej kody.

Niechodzi pod IE <- potrzebny
  1. <?php
  2. print '</TABLE></TABLE>';
  3.  
  4. print '<script language="JavaScript" src="ts_picker.js">';
  5. print '</script>';
  6.  
  7. print '<TABLE width="95%" BORDER="2" CELLPADDING="7" CELLSPACING="7">';
  8. print '<form name="tstest">';
  9. print '<TR><TH colspan="1" align="left"><B>Data:</B> <input type="Text" name="timestamp" value="" size="17" border="0"> <a href="java script:show_calendar('document.tstest.timestamp', document.tstest.timestamp.value);"> <img src="images/kal.gif" border="0" alt="Kalendarz CGS"></a></form></TH><BR></Table></TR></TH>';
  10. ?>


Drugi skrypt <- chodzi pod IE.
  1. <?php
  2. echo '<script language="JavaScript" src="ts_picker.js">';
  3. echo '</script>';
  4. echo '<form name="tstest">';
  5. echo '<input type="Text" name="timestamp" value="">';
  6. print '<a href="java script:show_calendar('document.tstest.timestamp', document.tstest.timestamp.value);"><img src="cal.gif" width="16" height="16" border="0" alt="Click Here to Pick up the timestamp"></a>';
  7. echo '</form>';
  8. ?>