473,403 Members | 2,270 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,403 software developers and data experts.

Element "GESCHLECHT" is undefined in FORM.

ERROR in my Query?!
ERROR:
Element GESCHLECHT is undefined in FORM.
i think everything ok. Maby somebody can help me here

Element GESCHLECHT is undefined in FORM.


Expand|Select|Wrap|Line Numbers
  1. The error occurred in \anmeldung2.cfm: line 404
  2.  
  3. 402 : 
  4. 403 : <cfoutput>
  5. 404 : <input type=hidden name="geschlecht" value="#form.geschlecht#">
  6. 405 : <input type=hidden name="plz" value="#form.plz#">
  7. 406 : <input type=hidden name="ort" value="#form.ort#">
here my code:
anmeldung1.cfm

Expand|Select|Wrap|Line Numbers
  1. <SCRIPT LANGUAGE=javascript>
  2. <!--
  3. /*
  4. Script validates form field entries
  5. Only the first three ones are checked
  6. If you need the others to be checked, just follow the same code examples
  7. (change field name and number of characters if needed)
  8. */
  9. function validate(theForm){
  10.     if (theForm.geschlecht.value == "0"){
  11.         alert("Bitte w&auml;hlen sie ihr Geschlecht.");
  12.         theForm.geschlecht.focus();
  13.         return false;
  14.     }
  15.     if (theForm.plz.value == "" || theForm.plz.value.length < 5 || theForm.plz.value.length > 5){
  16.         alert("Bitte geben Sie eine korrekte Postleitzahl ein.");
  17.         theForm.plz.focus();
  18.         return false;
  19.     }
  20.         if (theForm.ort.value == "" || theForm.ort.value.length < 2){
  21.         alert("Bitte sie Ihren Wohnort an.");
  22.         theForm.ort.focus();
  23.         return false;
  24.     }
  25.     if (theForm.land.value == ""){
  26.         alert("Bitte w&auml;hlen Sie Ihr Heimatland.");
  27.         theForm.land.focus();
  28.         return false;
  29.     }
  30.  
  31. return true;
  32. }
  33. //-->
  34. </SCRIPT>
  35. </head>
  36. <body text="#FFFFFF" bgcolor="#000066" link="#FFFFFF" vlink="#FFFFFF" alink="#FF0000" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
  37. <table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" >
  38. <tr VALIGN=BOTTOM BGCOLOR="#FF0000">
  39. <td WIDTH="169" HEIGHT="64"><img SRC="http://bytes.com/topic/coldfusion/images/header_2_2.jpg" height="82" width="1004" border="0" alt=""></td>
  40. </tr>
  41. </table>
  42. <table BORDER="0" CELLSPACING=0 CELLPADDING=0 WIDTH="98%" >
  43. <tr>
  44. <td width="15%"  bgcolor="#00349A" valign="top">
  45. <table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" >
  46. <tr VALIGN=TOP>
  47. <td WIDTH="113"><img SRC="http://bytes.com/topic/coldfusion/images/face.jpg" height="56" width="162" border="0" alt=""><br>
  48. <map name="menue">
  49. <area alt="login" coords="39,37,135,59" href="login.html">
  50. <area alt="Anmelden" coords="38,62,134,85" href="anmeldung.html">
  51. <area alt="Vorteile" coords="38,91,134,112" href="vorteile.html">
  52. <area alt="Unser Angebot" coords="37,116,133,140" href="http://bytes.com/topic/coldfusion/preise.html">
  53. <area alt="SMS-Versand" coords="35,172,131,193" href="javascript:sms()">
  54. <area alt="E-mail Provider" coords="34,198,132,216" href="http://www.labzone.de/cgi-bin/postman/mmstdo.cgi">
  55. <area alt="Grusskarte Versand" coords="33,221,129,239" href="http://www.Ihr-online-center.de">
  56. <area alt="Impressum" coords="33,245,127,263" href="http://bytes.com/topic/coldfusion/impressum.html">
  57. <area alt="Start" coords="61,271,96,287" href="http://bytes.com/topic/index.html">
  58. <area alt="Schliessen" coords="104,272,134,287" href="javascript:self.close()">
  59. </map>
  60. <img src="http://bytes.com/topic/coldfusion/images/menue.jpg" width="150" height="300" border="0" usemap="#menue">
  61. </td>
  62. </tr>
  63. </table>
  64. </td>
  65.  
  66.  
  67. <td width="550" align="right" valign="top">
  68. <table width="550" border="0" cellspacing="0" cellpadding="0">
  69. <tr>
  70. <td width="20">&nbsp;</td>
  71. <td><b><font color="#FFFFff"><font size=+2>Anmeldung </font>Teil 1 von 3</font></b><br><br></td>
  72. </tr>
  73.  
  74.  
  75. <tr>
  76. <td width="20">&nbsp;</td>
  77. <td>
  78. <form name="wohnort" method="post" action="anmeldung2.cfm" onSubmit="return validate(this);">
  79. <table>
  80. <tr><td>Geschlecht&nbsp;&nbsp;</td>
  81. <td>
  82. <SELECT NAME="geschlecht">
  83. <OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  84. <OPTION VALUE="1">m&auml;nnlich</OPTION>
  85. <OPTION VALUE="2">weiblich</OPTION>
  86. </SELECT>
  87. </td></tr>
  88. <tr><td>PLZ</td><td><input type=text name="plz" maxlength=5 size=20></td></tr>
  89. <tr><td>Ort</td><td><input type=text name="ort" length=30 size=20></td></tr>
  90. <tr><td>Land</td><td><select name="land">
  91. <option value="1" selected>Deutschland</option>
  92. <option value="2">&Ouml;sterreich</option>
  93. <option value="3">Schweiz</option>
  94. <option value="4">Lichtenstein</option>
  95. <option value="5">England</option>
  96. <option value="6">Frankreich</option>
  97. <option value="7">Italien</option>
  98. <option value="8">Spanien</option>
  99. </select></td></tr>
  100. <tr><td>&nbsp;</td><td><input type=submit value="Weiter &gt;&gt;"></td></tr>
  101. </table>
  102. </form>
  103.  
  104. </td>
  105. </tr>
  106. </table>
  107. <br>&nbsp;
  108. </body>
  109. </html>
  110.  
anmedung2.cfm

Expand|Select|Wrap|Line Numbers
  1. <script language="Javascript">
  2. function sms()
  3.     {
  4.     window.open("http://www.dialing.de","", "toolbar=no,directories=no,location=no,resizeable=no,menuBar=no,scrollbar=no,width=500,height=400")
  5.     }
  6. </script>
  7. </head>
  8. <body text="#FFFFFF" bgcolor="#000066" link="#FFFFFF" vlink="#FFFFFF" alink="#FF0000" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
  9.  
  10.  
  11.  
  12.  
  13. <table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" >
  14. <tr VALIGN=BOTTOM BGCOLOR="#FF0000">
  15. <td WIDTH="169" HEIGHT="64"><img SRC="http://bytes.com/topic/coldfusion/images/header_2_2.jpg" height="82" width="1004" border="0" alt=""></td>
  16. </tr>
  17. </table>
  18. <table BORDER="0" CELLSPACING=0 CELLPADDING=0 WIDTH="98%" >
  19. <tr>
  20. <td width="15%"  bgcolor="#00349A" valign="top">
  21. <table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" >
  22. <tr VALIGN=TOP>
  23. <td WIDTH="113"><img SRC="http://bytes.com/topic/coldfusion/images/face.jpg" height="56" width="162" border="0" alt=""><br>
  24. <map name="menue">
  25. <area alt="login" coords="39,37,135,59" href="login.html">
  26. <area alt="Anmelden" coords="38,62,134,85" href="anmeldung.html">
  27. <area alt="Vorteile" coords="38,91,134,112" href="vorteile.html">
  28. <area alt="Unser Angebot" coords="37,116,133,140" href="http://bytes.com/topic/coldfusion/preise.html">
  29. <area alt="SMS-Versand" coords="35,172,131,193" href="javascript:sms()">
  30. <area alt="E-mail Provider" coords="34,198,132,216" href="http://www.labzone.de/cgi-bin/postman/mmstdo.cgi">
  31. <area alt="Grusskarte Versand" coords="33,221,129,239" href="http://www.Ihr-online-center.de">
  32. <area alt="Impressum" coords="33,245,127,263" href="http://bytes.com/topic/coldfusion/impressum.html">
  33. <area alt="Start" coords="61,271,96,287" href="http://bytes.com/topic/index.html">
  34. <area alt="Schliessen" coords="104,272,134,287" href="javascript:self.close()">
  35. </map>
  36. <img src="http://bytes.com/topic/coldfusion/images/menue.jpg" width="150" height="300" border="0" usemap="#menue">
  37. </td>
  38. </tr>
  39. </table>
  40. </td>
  41.  
  42. <td width="550" align="right" valign="top">
  43. <table width="550" border="0" cellspacing="0" cellpadding="0">
  44. <tr>
  45. <td><b><font color="#FFFFff"><font size=+2>Anmeldung </font>Teil 2 von 3</font></b></td>
  46. </tr>
  47.  
  48. <tr>
  49. <td>Nun ben&ouml;tigen wir ein paar Daten von dir:
  50.  
  51. <form name="schritt2" action="anmeldung3.cfm" method="post"  onsubmit="return validate(this);" enctype="multipart/form-data">
  52.  
  53. </td>
  54. </tr>
  55. </table>
Expand|Select|Wrap|Line Numbers
  1. <table width="550" border="0" cellspacing="0" cellpadding="4">
  2. <tr>
  3. <td><nobr>Name / Pseudonym</nobr></td>
  4. <td><input type=text name="name1" size=20></td>
  5. </tr>
  6.  
  7. <tr>
  8. <td>E-Mail</td>
  9. <td><input type=text name="email" size=20></td>
  10. </tr>
  11.  
  12. <tr>
  13. <td>Passwort</td><td><input type=password name="pw1" size=20></td>
  14. </tr>
  15.  
  16. <tr>
  17. <td>Passwort (Wdh.)</td>
  18. <td><input type=password name="pw2" size=20></td>
  19. </tr>
  20. <tr>
  21. <td valign=top>Benachrichtigung</td>
  22. <td valign=top>
  23.  <SELECT NAME="pmnach"><OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  24.  <OPTION VALUE="Ja">Ja</OPTION>
  25.  <OPTION VALUE="Nein">Nein</OPTION>
  26.  </SELECT><br>
  27.  <font size=2>Wollen sie eine Benachrichtigung per E-Mail erhalten falls Sie eine Private Nachricht bekommen?
  28. </font></td>
  29.  </tr>
  30. <tr>
  31. <td valign=top>Sie suchen<br><font size=-2>(Mehrfachauswahl m&ouml;glich)</font></td>
  32. <td>
  33. <INPUT TYPE=CHECKBOX NAME="suchtyp" VALUE="1">
  34. &nbsp;einen Seitensprung<BR>
  35. <INPUT TYPE=CHECKBOX NAME="suchtyp" VALUE="2">
  36. &nbsp;eine Partnerschaft<BR>
  37. <INPUT TYPE=CHECKBOX NAME="suchtyp" VALUE="4">
  38. &nbsp;eine Freundschaft mit Perspektiven<BR>
  39. </td></tr>
  40. <tr>
  41. <td>Bild (optional)</td>
  42. <td><input type=file name="bild">&nbsp;(max. 20KB)</td>
  43. </tr>
  44. <tr>
  45. <td>&nbsp;</td>
  46. <td><font size=2>Aus Jugendschutztechnischen Gründen, müssen wir darauf hinweisen das ausschlie&szlig;lich jugendfreie Bilder erlaubt sind. Sollten sie dies nicht beachten, wird ihr Useraccount umgehend gel&ouml;scht.</font></td>
  47. </tr>
  48. <tr>
  49. <td>Alter</td>
  50. <td><input type=text name="gebltag" size=20></td>
  51. </tr>
  52.  
  53. <tr>
  54. <td>Gr&ouml;&szlig;e</td>
  55. <td><input type=text name="groesse1" size=3 maxlength=3> cm</td>
  56. </tr>
  57. <tr><td>Figur</td>
  58. <td><SELECT NAME="figur1">
  59. <OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  60. <OPTION VALUE="1">normal</OPTION>
  61. <OPTION VALUE="2">schlank</OPTION>
  62. <OPTION VALUE="4">sportlich</OPTION>
  63. <OPTION VALUE="8">athletisch</OPTION>
  64. <OPTION VALUE="16">vollschlank</OPTION>
  65. <OPTION VALUE="32">mollig</OPTION>
  66. <OPTION VALUE="64">kr&auml;ftig</OPTION>
  67. <OPTION VALUE="128">fett</OPTION>
  68. </SELECT></td>
  69. </tr>
  70.  
  71. <tr>
  72. <td>Haarfarbe</td>
  73. <td><SELECT NAME="haarfarbe1"><OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  74. <OPTION VALUE="1">blond</OPTION>
  75. <OPTION VALUE="2">hellblond</OPTION>
  76. <OPTION VALUE="4">dunkelblond</OPTION>
  77. <OPTION VALUE="8">rotblond</OPTION>
  78. <OPTION VALUE="16">rotbraun</OPTION>
  79. <OPTION VALUE="32">rot</OPTION>
  80. <OPTION VALUE="64">braun</OPTION>
  81. <OPTION VALUE="128">dunkelbraun</OPTION>
  82. <OPTION VALUE="256">schwarz</OPTION>
  83. <OPTION VALUE="512">grau</OPTION>
  84. <OPTION VALUE="1024">Glatze</OPTION>
  85. </SELECT></td>
  86. </tr>
  87.  
  88. <tr>
  89. <td>Augenfarbe</td>
  90. <td><SELECT NAME="augenfarbe1">
  91. <OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  92. <OPTION VALUE="1">blau</OPTION>
  93. <OPTION VALUE="2">blaugrau</OPTION>
  94. <OPTION VALUE="4">blaugr&uuml;n</OPTION>
  95. <OPTION VALUE="8">gr&uuml;n</OPTION>
  96. <OPTION VALUE="16">braun</OPTION>
  97. <OPTION VALUE="32">dunkelbraun</OPTION>
  98. </SELECT></td>
  99. </tr>
  100.  
  101. <tr>
  102. <td>Beruf</td>
  103. <td><input type=text name="beruf1" size=20></td></tr>
  104. <tr><td>Bildung</td>
  105. <td><SELECT NAME="bildung1">
  106. <OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  107. <OPTION VALUE="1">Hauptschulabschlu&szlig;</OPTION>
  108. <OPTION VALUE="2">Realschulabschlu&szlig;</OPTION>
  109. <OPTION VALUE="3">Fachabitur</OPTION><OPTION VALUE="4">Abitur</OPTION>
  110. <OPTION VALUE="5">Lehre</OPTION><OPTION VALUE="6">Fachhochschulabschlu&szlig;</OPTION>
  111. <OPTION VALUE="7">Universit&auml;tsabschlu&szlig;</OPTION></SELECT></td>
  112. </tr>
  113.  
  114. <tr>
  115. <td>Kinder</td>
  116. <td><SELECT NAME="kinder1"><OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  117. <OPTION VALUE="1">Ich habe keine Kinder</OPTION><OPTION VALUE="2">Ich habe ein oder mehrere Kinder</OPTION>
  118. <OPTION VALUE="3">Meine Kinder wohnen nicht bei mir</OPTION></SELECT></td>
  119. </tr>
  120.  
  121. <tr>
  122. <td>Status</td>
  123. <td><SELECT NAME="single1">
  124. <OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  125. <OPTION VALUE="1">Ich bin Single</OPTION>
  126. <OPTION VALUE="2">Ich habe einen Freund / eine Freundin</OPTION>
  127. <OPTION VALUE="3">Ich bin verheiratet</OPTION>
  128. <OPTION VALUE="4">Ich lebe in Scheidung</OPTION></SELECT></td>
  129. </tr>
  130.  
  131. <tr>
  132. <td>Raucher</td>
  133. <td><SELECT NAME="raucher1">
  134. <OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  135. <OPTION VALUE="1">Ja</OPTION>
  136. <OPTION VALUE="2">Nein</OPTION>
  137. </SELECT></td>
  138. </tr>
  139.  
  140. <tr><td>Ausrichtung</td>
  141. <td>zart<INPUT TYPE=RADIO NAME="temperament1" VALUE="1">&nbsp;
  142. <INPUT TYPE=RADIO NAME="temperament1" VALUE="2">&nbsp;
  143. <INPUT TYPE=RADIO NAME="temperament1" VALUE="4" CHECKED>&nbsp;
  144. <INPUT TYPE=RADIO NAME="temperament1" VALUE="8">&nbsp;
  145. <INPUT TYPE=RADIO NAME="temperament1" VALUE="16">&nbsp;hart</td>
  146. </tr>
  147.  
  148. <tr VALIGN=TOP>
  149. <td>Kurzvorstellung
  150. <br><font size=-2>(Hier k&ouml;nen Sie sich und Ihre </font>
  151. <br><font size=-2>Interessen kurz pers&ouml;nlich vorstellen.)</font></td>
  152.  
  153. <td><textarea name="body" WRAP=virtual ROWS=6 COLS=35 ></textarea></td>
  154. </tr>
  155.  
  156. <tr>
  157. <td valign="top">Mitgliedschaft</td>
  158. <td valign="top">
  159.  <SELECT NAME="passiv"><OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  160.  <OPTION VALUE="1">Standard</OPTION>
  161.  <OPTION VALUE="2">Premium</OPTION>
  162.  </SELECT>&nbsp;<bR> Im moment ist nur Standard verfügbar, da der erste Monat der Liebesboerse kostenlos ist und Standart dieselben Funktionen wie das sonstige Premium beinhaltet.(Standart ist kostenlos, die Premium Preise sehen sie <a href="preise.html">hier.</a>)<bR></td>
  163.  </tr>
  164.  
  165. <!--<tr>
  166. <td>&nbsp;</td>
  167. <td>Wenn ja, an wie viele Personen darf dein Profil pro Woche weitergeleitet werden?<br>An maximal <SELECT NAME="maxkontakte"><OPTION>10</OPTION><OPTION>20</OPTION><OPTION>30</OPTION> <OPTION>40</OPTION><OPTION>50</OPTION><OPTION SELECTED>60</OPTION><OPTION>70</OPTION><OPTION>80</OPTION> <OPTION>90</OPTION></SELECT>
  168.  Personen pro Woche.</td>
  169.  </tr>-->
  170.  
  171.  <tr>
  172.  <td valign="top"> <SELECT NAME="agbs">
  173.  <OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  174.  <OPTION VALUE="2">Nein</OPTION>
  175.  <OPTION VALUE="1">Ja</OPTION>
  176.  </SELECT></td>
  177. <td colspan=2 valign="top">
  178.  
  179. Hiermit best&auml;tigen sie unsere <a href="#" onClick="window.open('../agb.html','_AGB', 'toolbar=No,location=No,directories=no,status=no,menubar=No,scrollbars=yes, resizable=yes,copyhistory=no,width=640,height=480')">AGBs</a> gelesen und akzeptiert zu haben.</td>
  180. </tr>
  181. <tr>
  182.  <td valign="top"> <SELECT NAME="datenspeichern">
  183.  <OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  184.  <OPTION VALUE="2">Nein</OPTION>
  185.  <OPTION VALUE="1">Ja</OPTION>
  186.  </SELECT></td>
  187. <td colspan=2 valign="top">
  188. Ja, ich bin damit einverstanden, da&szlig; meine pers&ouml;nlichen Daten gespeichert und im Rahmen der Partnervermittlung verarbeitet werden.</td>
  189. </tr>
  190.  
  191. <tr>
  192. <td colspan=2 valign="top"><br><br>Wir vermitteln ausschlie&szlig;lich private Kontakte ohne finanzielle Interessen
  193. und ohne geb&uuml;hrenpflichtige Telefonnummer.<br><br>
  194. <br></td>
  195. </tr>
  196.  
  197. <tr>
  198. <td valign="top">
  199.  <SELECT NAME="finter">
  200.  <OPTION VALUE="0" SELECTED>Bitte w&auml;hlen</OPTION>
  201.  <OPTION VALUE="2">Nein</OPTION>
  202.  <OPTION VALUE="1">Ja</OPTION>
  203.  </SELECT></td>
  204.  <td colspan=2 valign="top">
  205.  Hiermit best&auml;tige
  206. ich, da&szlig; ich keine finanziellen Interessen habe und keine geb&uuml;hrenpflichtige Telefonnummer verwende.</td>
  207. </tr>
  208.  
  209. <tr>
  210. <td>&nbsp;</td>
  211. <td><br><input type=submit value="Weiter &gt;&gt;"></td>
  212. </tr>
  213. </table>
  214.  
  215. <cfoutput>
  216. <input type=hidden name="geschlecht" value="#form.geschlecht#">
  217. <input type=hidden name="plz" value="#form.plz#">
  218. <input type=hidden name="ort" value="#form.ort#">
  219. <input type=hidden name="land" value="#form.land#">
  220. </cfoutput>
  221. </form>
  222. </td>
  223. </tr>
  224. </table>
  225. <br>&nbsp;
  226. </body>
  227. </html>
  228.  
Maby you find for me what i made wrong and how look correct.


Thanks
Mar 11 '08 #1
3 4280
acoder
16,027 Expert Mod 8TB
Welcome to TSDN!

Not sure what might be causing the problem, but I suggest you turn debugging on (if you haven't already) and check out the form fields submitted.
Mar 11 '08 #2
yes i turn debugging on.

how can i resolve this again today i get this "Element FIRMA is undefined in FORM. "

thanks
May 28 '08 #3
acoder
16,027 Expert Mod 8TB
Welcome back!

It seems that this for another field. Is the form and code any different from what you posted two months back?

In the debugging output, if you look under Form Fields, what do you see?
May 28 '08 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: lawrence | last post by:
I can't get this page to show in Internet Explorer, so I assume the error is quite grave. I'm using a PHP script to write the RSS file. In Netscape the page shows up as plain text. "Item" is...
4
by: Timo Nentwig | last post by:
Hi! I'm new to XML schemas; can somebody explain why bar is undefined? <xs:element name="bar"> <xs:complexType> <xs:simpleContent> <xs:extension base="xs:string"> <xs:attribute name="id"...
2
by: Michael Hill | last post by:
I have this large form with over 150 elements. I need to do some formatting of the data in some of the fields. I do this based on the name of the fields, i.e the field names would be cost1,cost2,...
4
by: George Hester | last post by:
I have a form that has 4 <INPUT> elements in it each with a unique id. The page loads with the <INPUT> id = 1 with focus. If a tab is done immediately without entering anything in this INPUT text...
8
by: Sergio Otoya | last post by:
Hi all, I need to add an input hidden field to an existing form (post). I have tried a couple things like adding the '<INPUT type=hidden name=idSelectedURL value=http://server/documents>' to...
4
by: Stuart Perryman | last post by:
Hi, I have the following code which works just fine in IE6 but not in Firefox. It is an extract of several table rows each with an individual form. It is generated by php. <form...
6
by: Luke Dalessandro | last post by:
I'm not sure if this is the correct forum for platform specific (Mozilla/Firefox) javascript problems, so just shout and point me to the correct newsgroup if I'm being bad. Here's the deal... ...
4
by: Pasquale | last post by:
I am using the JS and HTML code below to check that required fields are completed for attributes of a product. The first attribute is a select menu and the second is a radio set. My JS goes through...
6
by: ashok.dhananjeyan | last post by:
Hi, Actually , I wrote one javascript to retrieve the name of the form in one particular page. what i did in this page is, <script> function checkbutton() {
1
by: Louis | last post by:
I am building a JS library (to be used in an HTML page, of course) to get and process some data via Google Maps API. The whole result is stored in a single JS object. Then I want to upload them to...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.