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 strongm 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: *

  • Users: genis
  • Order by date
  1. genis

    Beware getElementsByName() in IE

    Yes, and boo people like you who seem to think if IE has it, it should be a standard. Quite simply all you named were either add-ons only IE specific or a part of their JScript engine. Having nothing to do with standards. Sorry, jeff, IE developers should really stick to finishing compliance...
  2. genis

    Beware getElementsByName() in IE

    In IE using getElementsByName() is a problem. IE always returns the name that is hardcoded into the page. Even if a javascript function has changed "myName" to "yoName" IE will return "myName"... because that's what it sees is hardcoded into the page. So if you...
  3. genis

    odd element.name changing problem in IE

    Okay I've figured it out... and it is IE's fault as far as I can tell. it seems getElementsByName() is the problem. IE seems to return the the name that is hardcoded into the page always. Even if a javascript function has changed "select1" to "test1" IE will return...
  4. genis

    odd element.name changing problem in IE

    nah, item() is a sort of function. optionArr.item(0) is just a longhand way of saying optionArr[0] why do i do it that way? brackets scare me. Any other help? no one can seem to solve this on any forum. It's all IE's fault... it's da DEBBIL!!
  5. genis

    odd element.name changing problem in IE

    Hi all. Upon deciding current browsers CSS implementation didn't allow select boxes to look as spiffy as i wanted... i wrote this little script which acts like a select box (sort of) but isn't. Anywho it works Grreeaat in Mozilla. IE always gives me heaps of trouble, because it hates me and...
  6. genis

    Verify data is all numbers.....

    DATA test; set yourdata; if verify(alpha,'0123456789')=0 then test= 'OK'; RUN;

Part and Inventory Search

Back
Top