Search results

  1. L

    Why won't an image show up in IE, but will in any other browser? (HTML)?

    How about IE6? IE8? What's the rest of your code? Did you test it with CSS off? Does your page use any JavaScript; if so, did you try with JavaScript ofF?
  2. L

    is there a patent on mouse-over that displays an image?

    No, there isn't. CSS and HTML DOM are parts of the open W3C standard, and ECMAScript (standardised JavaScript) is part of the open ECMA standard. And Flash is made by Adobe, who wouldn't do something as silly as patenting a basic GUI behaviour. Java's company (sun) wouldn't do it. Or any other...
  3. L

    HTML drag and drop code?

    I'm sorry my friend, but you can't do this in HTML. Drag and drop is a behaviour. HTML is just about content, structure and semantics. It can't do behaviour. JavaScript on the other hand will work perfectly, but I suggest a little server side backup (like PHP) in the way of a form which lets...
  4. L

    My HTML Form/Submit Elements wont work. Why?

    What is the action that the form preforms on submit? It might help answer the question. Maybe that action's URL isn't pointing to an existing file.
  5. L

    How can i get a scroll box that displays HTML code inside?

    Ideally, you should never expose code to the end user, but I can understand that there's a situation where you might need to. You don't have to replace >'s just <'s because they START tags, you just need to replace it with: < Don't use a text box for that though*, just use a pre-formatted...
Back
Top