Search results

  1. I

    form submission differences?

    long story short, I ran into a weird difference between input type submit and using the javascript form submit function. when I use the regular input element to submit, post data goes through fine, but not when I use the javascript function. I'm usin the javascript for form validation so I can't...
  2. I

    C++ square bracket overloading

    is it possible to overload square brackets on an object to take a string input or is it integer only?
  3. I

    javascript appendChild

    lil snippet from one of my functions in a project I'm workin on. now see, the first part here works, but the second part won't append msgArea to area, but it will append it to body. I have no idea what the problem is, and firefox's error console doesn't tell me a thing. I know I can append to...
  4. I

    100% height with CSS

    so yeah, makin a site and trying to get a div to be a left bar that's 100% height. it just seems it's stuck at 100% of the default size of the window, so if the content is larger than that, it won't extend to the new size of the document. any ideas? here's the location of the website...
  5. I

    html rounded borders and IE

    hokay, so ixonal.elementfx.com all them rounded boxes, they're divs containing 9x9 tables for the rounded edges. Works just fine in firefox, but IE is givin me a couple problems with it. 1. it appears there is 2px of space between every cell in the table, causing backgrounds to repeat when I...
  6. I

    Altering elements made with innerHTML

    I'm workin on my website with AJAX and I want to create the menu on the server side, and just chunk that code into the navBar.innerHTML variable with javascript. Thing is, after I do that I want to alter properties of the menu objects. So I guess my question is are elements added to a page...
  7. I

    Table not rendering in IE

    first of all, the page in question is at ixonal.elementfx.com ok, so the problem is that the tables I'm dynamically creating for each "bubble" don't want to be rendered in internet explorer. I downloaded and installed the DebugBar and looked at the DOM model and all the info is there correctly...
Top