Mam script na vypisovani aktualniho dne a svatku (uvadim nize), ale rad bych ty svatky nacpal do JS souboru, at takovou "pras..nu" necpu do stranky. Nevim, ale jak to dat presne dohromady - tzn. co vse ma obsahovat .js soubor, a co z toho mam dat do html stranky. Predem diky za pomoc <script> var now = new Date(); var yr = now.getYear(); var mName = now.getMonth() + 1; var dName = now.getDay() + 1.; var dayNr = ((now.getDate()<10) ? "" : "")+ now.getDate(); if(dName==1) Day = "Neděle"; if(dName==2) Day = "Pondělí"; if(dName==3) Day = "Úterý"; if(dName==4) Day = "Středa"; if(dName==5) Day = "Čtvrtek"; if(dName==6) Day = "Pátek"; if(dName==7) Day = "Sobota"; if(mName==1) Month="1."; if(mName==2) Month="2."; if(mName==3) Month="3."; if(mName==4) Month="4."; if(mName==5) Month="5."; if(mName==6) Month="6."; if(mName==7) Month="7."; if(mName==8) Month="8."; if(mName==9) Month="9."; if(mName==10) Month="10."; if(mName==11) Month="11."; if(mName==12) Month="12."; // String to display current date. var todaysDate =(" " + Day + " " + dayNr + ". " + Month + " " + yr); // Write date to page. document.open(); document.write("Dnes je <b> "+todaysDate+"</b> a svátek má <b>"); today = new Date(); den=today.getDate(); mesic=(today.getMonth()+1); if (mesic==1) { if (den==01) document.write("Nový rok"); if (den==02) document.write("Karina"); if (den==03) document.write("Radmila"); if (den==04) document.write("Diana"); if (den==05) document.write("Dalimil"); if (den==06) document.write("Tři králové"); if (den==07) document.write("Vilma"); if (den==08) document.write("Čestmír"); if (den==09) document.write("Vladan"); if (den==10) document.write("Břetislav"); if (den==11) document.write("Bohdana"); if (den==12) document.write("Pravoslav"); if (den==13) document.write("Edita"); if (den==14) document.write("Radovan"); if (den==15) document.write("Alice"); ////...atd//// document.write("</b>"); } </script>
This archive was generated by hypermail 2.1.2 : 19. 03. 2002, 12:31 CET