Mobile app version of vmapp.org
Login or Join
Sarah324

: Implementing inline editing for a web order form without using Javascript As the title states, I'm trying to find a good solution to implement inline editing for a web order form with just

@Sarah324

Posted in: #Css #Forms #Html

As the title states, I'm trying to find a good solution to implement inline editing for a web order form with just HTML/CSS.

The only mediocre solution I have right now is this -> jsfiddle.net/jmggp/1/
But I think it looks unprofessional. Are there any other solutions that I can try to learn about?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Sarah324

2 Comments

Sorted by latest first Latest Oldest Best

 

@Kaufman445

I'm afraid you'll have to rely on JavaScript if you plan on serving the same possibilities for all the browsers your visitors would be using. It is possible to do it without JS using HTML5 but then you have the problem of requiring modern browsers.

To take a look at inline editing using HTML5 I recommend you take a look at: html5demos.com/contenteditable

10% popularity Vote Up Vote Down


 

@Murray432

Sorry, but inline editing requires JavaScript - the HTML/CSS of a page cannot be changed without it. The HTML is the content that your webserver sends to your visitor's browser; it is static. The CSS (also static) tells the browser how to display the content. In order to change the content after it reaches the browser (as in editing), you have to use JavaScript.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme