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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 4midori

    Netscape CSS mess

    Thanks for the suggestions. clear:left seemed to fix it, but I have to check it out further. If the box model hack is for IE, why is it needed for Netscape?
  2. 4midori

    Netscape CSS mess

    Hi, I'm coding my new site, which of course works fine in IE, but Netscape 7 hoses it. Below are the relevant styles. I put a border on every div so the problem is easier to troubleshoot. The issue is that divs are overlapping and the #footer div is not sitting at the bottom of #frame...
  3. 4midori

    Validate for numbers and "-" only (phone numbers)

    Thanks. I tried the code below, but am getting errors. I need code that will dynamically check the field that calls the function. function checkPhone(fld){ obj = window.document.forms[0].+fld; document.write(obj); tstval = obj.value; re = /^[0-9\-" "]$/; if(!tstval.match(re)) {...
  4. 4midori

    Validate for numbers and "-" only (phone numbers)

    Hi, I know this is simple, but I haven't found a script that will work. I need a script that will allow online 01234567890 and the "-" character in a form field. It should be dynamic so I can pass in the form name and the field name. I will use it either with...
  5. 4midori

    CSS works in IE 5+, crashes in Netscape 7--help!

    Kevin, Many thanks. This helped a bit. I have a similar design that worked fine without specifying so much, but in this case I had to add more to specify height, and now other things are falling into place! Regards, Ben www.madisonmusicians.net & a bunch of others
  6. 4midori

    CSS works in IE 5+, crashes in Netscape 7--help!

    To solve my problem I had to explicitly declare all attributes that I wanted the child containers to exhibit and not rely on them getting the attributes passed from their parents. Nope, Netscape 7 at home and at work are displaying improperly--a div is missing and logo is messed up. Could...
  7. 4midori

    CSS works in IE 5+, crashes in Netscape 7--help!

    Hi, I've created a very simple design, much like others I have done before, and it works perfectly in IE 5+, but not Netscape 7. Could someone look at www.widerm.org, and the attendant style sheet www.widerm.org/widerm_style.css and let me know what's funky. Thanks, Ben
  8. 4midori

    problem making values dynamic in phone number auto-parse script

    Thank you, that worked well.
  9. 4midori

    problem making values dynamic in phone number auto-parse script

    I have a script that validates phone numbers, adding - where needed and auto-advancing after each dash. It works fine, but I need to make the last line dynamic. function autoPhoneNum(theform,thefield) { num = eval("window.document."+theform+"."+thefield+".value")...

Part and Inventory Search

Back
Top