I have a table, where I need to ask user to select some data given in a dropdown list with respect to the current cell of the table. After the value selected by the user, when the dropdown list loses its focus, I want to set that value in the same cell as a normal text data. That means the dropdownbox should disappear now and the new value should appear in the same cell as a norma开发者_运维技巧l text data. Please help me regarding this.
With pure CSS and HTML this is not possible (apart from the most extreme hacking that I can't think of).
The best thing you can use for this probably is Javascript. And as others have suggesting jQuery is a useful library that will make your web development with Javascript easier.
精彩评论