hice un conversor de fecha de calendario civil al hebreo, pero necesito que el resultado de esa conversion me apareza dentro de un <div> ya que en estos momento solo pude hacer que me apareciera en una ventana emergente. de moento lo tengo asi pero no me funciona
Código:
Gracias enormes x su ayuda <script type="text/javascript"> //esto es solo una perte del codigo x es larguisimo function G2H(nYearG, nMonthG, nDateG) { var nYearH var nMonthH var nDateH var dGreg var inputResult = document.getElementById(Result).value nYearG = Number(nYearG) nMonthG = Number(nMonthG) nDateG = Number(nDateG) dGreg = new Date(nYearG, nMonthG - 1, nDateG) document.getElementById('Result').innerHTML = inputResult; document.write(FormatDate(dGreg) + " = ") document.write(FormatDateH(GregToHeb(dGreg))) document.write("<p>") } </script> <form > Mes <select name="MonthH"> <option Value="1">Tishrei <option Value="2">Jeshvan <option Value="3">Kislev <option Value="4">Tevet <option Value="5">Shevat <option Value="6">Adar I <option Value="7">Adar (II) <option Value="8">Nisan <option Value="9">Iyar <option Value="10">Sivan <option Value="11">Tamuz <option Value="12">Av <option Value="13">Elul </select> Dia <select name="DateH"> <option Value="1">1 <option Value="2">2 <option Value="3">3 <option Value="4">4 <option Value="5">5 <option Value="6">6 <option Value="7">7 <option Value="8">8 <option Value="9">9 <option Value="10">10 <option Value="11">11 <option Value="12">12 <option Value="13">13 <option Value="14">14 <option Value="15">15 <option Value="16">16 <option Value="17">17 <option Value="18">18 <option Value="19">19 <option Value="20">20 <option Value="21">21 <option Value="22">22 <option Value="23">23 <option Value="24">24 <option Value="25">25 <option Value="26">26 <option Value="27">27 <option Value="28">28 <option Value="29">29 <option Value="30">30 </select> Año <input type="text" name="YearH" value=""> <p> <input type="button" value="Calcular" onclick="H2G(YearH.value, MonthH.value, DateH.value)" /> <div id="Result"></div>