I would like to prevent additional input on a HTML table cell once it's width is reached.
The table has a fixed layout, no wrap and a specific width. The overflow is currently set to hidden.
Is it possible to filter (and ultimately prevent) input so that it stops at the fixed width so that there will be no overflow (hidden or otherwise). I am currently filtering carriage return using jQuery so that the cell will not expand to additional lines.
Perhaps I am asking too much from a HTML table...