Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Berns

  1. Berns

    img maps & pop up

    I have to develop code for an image map and pop-up. I have a large image, I want to develop and image map - which I can do with out a problem. The problem that I am having is intergrating the pop up piece. When a user clicks on an area on the image map I need a pop up to appear. Can anyone...
  2. Berns

    Netscape Question --

    I would like to have an expanding menu on my website, since I got the code from a JS website. The problem is that it works fine in IE but doesn't work at all in Netscape. Here is a sniplet: in the header: img1=new Image() img1.src="/images/fold.jpg" img2=new Image()...
  3. Berns

    onSubmit

    I have 4 text boxes that I have to also chack for a value (they are not required, but if there is not a value for them when they user hits submit they should be advised that the entire form has not been completed.) I've tried adding this functionality to this script and keep getting error...
  4. Berns

    Link color & CSS

    Can someone explain how I can control link color/hover, etc. with css?
  5. Berns

    onSubmit

    Great, this works perfectly!! Another star for you! Thanks you sooo much!
  6. Berns

    onSubmit

    Here's the first part, w/ first question: <code> <SCRIPT language=JavaScript> <!-- Begin function checkRequired(theForm){ //check ID first if (theForm.Q15.value.length!=6) { alert( &quot;Please enter your six digit ID.&quot;); theForm.Q15.focus(); return false; } //ID is OK...
  7. Berns

    onSubmit

    I tried several thing to make this script work, and I just couldn't get it. I changed this line several times: for (x=01; x <= 19; x++){ I changed the &quot;1&quot; to &quot;01&quot; because all of the Q#'s are 2 intergers. then I changed the &quot;4&quot; to &quot;19&quot; to reflect the...
  8. Berns

    onSubmit

    Okay, thanks!
  9. Berns

    onSubmit

    i've been trying to figure this our for days now and am super frustrated. That still doesn't work, the form consists of 14 radio button questions, each with 5 selections (excellent, good, fair, etc) and 4 text field questions (sorry I forgot about these). Does that help? I guess I wasn't very...
  10. Berns

    onSubmit

    This isn't working, the form submits without an alert even if only one question was answered.
  11. Berns

    Password validation

    Here you go: http://javascript.internet.com/forms/val-pass.html Hope this helps!
  12. Berns

    onSubmit

    hello-someone was helping me with this several days ago but I still can't figure it out. This is what I am trying to do: I have a form with several radio button type questions. Only one of the fields is required. If any of the not required fields are left blank when the user hits submit they...
  13. Berns

    Min. # of Characters in a form field

    Great, Thanks a million!
  14. Berns

    Min. # of Characters in a form field

    It looks like that would work, the problem is that I have a bunch of hidden fields and it is picking those up and requesting a value, Urg! Any ideas? Thanks for all of your help!!
  15. Berns

    Min. # of Characters in a form field

    It didn't work, this is what I have: function checkRequired( theForm ) { var bMissing2 = false; if ( 0 == theForm.Q15.value ) bMissing2 = true; if (theForm.Q15.value.length!=6) { alert( &quot;Please enter your six digit...

Part and Inventory Search

Back
Top