Go Back   iTrader Forums » iTrader Chat » General Chit Chat » HTML/XHTML Design

HTML/XHTML Design Discuss anything to do with HTML XHTML design here.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 19th March 2008, 04:37 PM
Junior Member
 
Join Date: Mar 2008
Posts: 1
Credits: 0
Default HTML Help - Mandatory Fields?

I am trying to create a form for people on my website to fill out if they would like to create an online account, the web portal we use doesnt have the option to set up your own account so they must submit the info to us.I have the the fields for name address phone and stuff but it they click submit it will go through, i need it if they do not fill out field to stop them and make them fill it out before it sends.Any help?
Reply With Quote
  #2 (permalink)  
Old 19th March 2008, 06:03 PM
Junior Member
 
Join Date: Mar 2008
Posts: 1
Credits: 0
Default

Change the onsubmit action for the form to a javascript check. You can check any field you like with something like: if(document.getElementById('ID_of_the_field').valu e == "") return false;Your onsubmit should look like The javascript should look like: form myFormChecker() { ....check each field as the above example shows... return true; }Because it returns false if a field is blank, the submission will not go through. If none of the checks return false, a true is returned and the submission will go through.This will all fail to function if scripts are blocked. So, you SHOULD also check on your server to ensure the fields are not blank and return the user to the form to finish filling it out.
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 04:46 PM. Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
Ad Management by RedTyger


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72