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 gkittelson 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: JRye
  • Order by date
  1. JRye

    Object is null in IE8 and Firefox

    I was exagerating... slightly. The company has optimized all their sites for IE 6, but I see code all the time that dates back to the late 90's. Now that IE 8 has been "released", their having all kinds of JavaScripting issues. This data tree script is for the D.U.V. on their Western Reserve...
  2. JRye

    Object is null in IE8 and Firefox

    IE 4 users are our largest customer base. I believe that Alexander Gram Bell originally wrote that JavaScript on an abacus. Actually it came from Dynamic Drive circa 02. I am having the same issue in all browsers now. I am just going to use another script, but I thank you for your help. Have a...
  3. JRye

    Object is null in IE8 and Firefox

    I have an expandable data tree that works in IE6 and 7, but in IE8 and Firefox, the rows will not expand. Debugging tells me that in line foldercontent.style.display="", style is a null object. Can this work in IE8 or should I used another script? Thank you for you help. Code: var...
  4. JRye

    Hiding a large HTML section

    You could use a simple JavaSript to show/hide divs like so, <head> <script type="text/javascript"> function display(obj,id1,id2) { txt = obj.options[obj.selectedIndex].value; document.getElementById(id1).style.display = 'none'; if ( txt.match(id1) ) { document.getElementById(id1).style.display...
  5. JRye

    document is undefined

    Whoa, whoa gentlemen. I greatly appreciate all of the assistance. You were all right. getElementById and getframes both worked. It was the .location property that was causing the problem in Firefox. While I agree with DreXor that someone writing scripts should know camel case. I work with 9...
  6. JRye

    document is undefined

    One of the URL's with this iframe on it is: https://www.intersecurities.com/wps/portal/isi and below is all the code from the one of the view jsp's. We are using a blank.html page in the src tag because we are behind a secure protocol. If I put the individual URL feeds coming into the IFrames...
  7. JRye

    document is undefined

    I have an IFrame coming into a jsp page. I'm using this java script to call the correct url. It works in I.E., but in Firefox I get a error messages that says "document is undefined", which as you can see, is true. I tried x=document, but not good enough. Can anyone tell me what I have to...
  8. JRye

    getElementById is not a function error in FF

    This is driving me nuts. This script executes fine in IE, but in FF I get this error "document.getElementById(buttonID2).fireEvent is not a function". When I remove the underscores from the submitButton id's I don't get any error messages, but then it doesn't work in IE or FF. Is it the...

Part and Inventory Search

Back
Top