User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the JavaScript / DHTML / AJAX section within the Web Development category of DaniWeb, a massive community of 332,603 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,176 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our JavaScript / DHTML / AJAX advertiser: Lunarpages Web Hosting

ALERT and JAVA Script

Join Date: Mar 2008
Location: South Africa
Posts: 123
Reputation: Traicey is an unknown quantity at this point 
Rep Power: 1
Solved Threads: 14
Traicey's Avatar
Traicey Traicey is offline Offline
Junior Poster

Help ALERT and JAVA Script

  #1  
Mar 20th, 2008
I have a program that suppose to print out a student information so I have to use Alert in order to make this a success but my JAVA SCRIPT is not producing anything, I dont know what Im missing in my code please have a look at it.... its quite bit long but please be pacient with me

<script language="javascript">
		<!--
		  function validateInput()
		  {
		      var LName = document.frmStudentInfo.txtLastName.value;
              var FName = document.frmStudentInfo.txtFirstName.value;
              var MI = document.frmStudentInfo.txtS_Mi.value;
              var Address = document.frmStudentInfo.txtS_Add.value;
              var City = document.frmStudentInfo.txtS_City.value;
              var State = document.frmStudentInfo.txtS_State.value;
              var Zip = document.frmStudentInfo.txtS_Zip.value;
              var Phone = document.frmStudentInfo.txtS_Phone.value;
              var DOB = new Date(document.frmStudentInfo.txtS_Dob.value);
              var lstInx = document.frmStudentInfo.lstF_ID.selectedIndex;
              var radValue;
              var checkedBox = "NO";
              var radChecked = false;
              
              for(var i = 0;i < document.frmStudentInfo.optS_Class.length;i++)
              {
                if(document.frmStudentInfo.optS_Class[i].checked)
                   {
                     radValue = document.frmStudentInfo.optS_Class[i].value;
                     radChecked = true;
                   }
              }
               
              if(document.frmStudentInfo.txtLastName.value == "")
               {
                 alert("Please enter last name");
                 document.frmStudentInfo.txtLastName.select();
                 return false;
               } 
              else if(document.frmStudentInfo.txtFirstName.value == "")
               {
                 alert("Please enter first name");
                 document.frmStudentInfo.txtFirstName.select();
                 return false;
               }
              else if(document.frmStudentInfo.txtS_Mi.value == "")
               {
                 alert("Please enter MI");
                 document.frmStudentInfo.txtS_Mi.select();
                 return false;
               }
              else if(document.frmStudentInfo.txtS_Add.value == "")
               {
                 alert("Please enter address");
                 document.frmStudentInfo.txtS_Add.select();
                 return false;
               }
               else if(document.frmStudentInfo.txtS_City.value == "")
               {
                 alert("Please enter city");
                 document.frmStudentInfo.txtS_City.select();
                 return false;
               }
               else if(document.frmStudentInfo.txtS_State.value == "")
               {
                 alert("Please enter state");
                 document.frmStudentInfo.txtS_State.select();
                 return false;
               }
               else if(document.frmStudentInfo.txtS_Zip.value == "")
               {
                 alert("Please enter zip code");
                 document.frmStudentInfo.txtS_Zip.select();
                 return false;
               }
               else if(document.frmStudentInfo.txtS_Phone.value == "")
               {
                 alert("Please enter phone");
                 document.frmStudentInfo.txtS_Phone.select();
                 return false;
               }
               else if(isNaN(DOB) == true)
               {
                 alert("Please enter valid date in the format dd/mm/yy");
                 document.frmStudentInfo.txtS_Dob.select();
                 return false;
               }
               else if(lstInx == -1)
		       {
		         alert("Please select Advisor");
		         document.frmStudentInfo.lstF_ID.selectedIndex == 0;
		         return false;
		       }
              else if(radChecked == false)
		       {
		        alert("Please select class");
		        return false;
		       }
		      else
		      {
		        if(document.frmStudentInfo.chkResident.checked == true)
		          {
		           checkedBox = "YES";
		          }
                alert(FName +  " " + LName + "\n" +
					 Address + "\n" +
					 City + " " + State + " " + Zip + "\n" +
					 "Phone" +  " " + Phone + "\n" +
					 "Class" + " " +  radValue + "\n" +
					 "WI Resident" + " " + checkedBox + "\n" +
					 "Advisor" + " " + document.frmStudentInfo.lstF_ID.options[lstInx].text);
			 }	 
		  }
		//-->
		</script>
AddThis Social Bookmark Button
Reply With Quote  
All times are GMT -4. The time now is 1:21 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC