On Dec 8, 2:24 am, Sayu <
supers...@gmail.com> wrote:
> <td class='B_r'>Body <input type='hidden' id='Body' value='1'><img
> OnMouseOver='SETEV("Body",2);' src='./nud.gif' usemap='#nud'></td><td
> class='BR_c'><span class='cBody' name='D_Body'>-♦</span></td>
Form templates were part of Web Forms 2.0 that formed the basis of
forms in HTML5, but have been dropped.
It was not that easy to add such functionality.
But a big part of why your code is messy and hard to read is that is,
frankly, is badly authored. You seem to:
1. Use tables for layout.
2. Have inline, obtrusive, JavaScript.
3. Use redundant spans.
4. Use HTML-entities instead of Unicode characters (is the page not in
UTF-8 this is probably your only option, though).
Perhaps you want that diamond shape since it is a bullet point. In
that case you should mark it up as a list in HTML and set the symbol
in CSS.
I do not know why you are using an imagemap either, but probably that
solution could be altered. Right now it is totally inaccessible, i.e.
invisble to screen readers and not focusable without a mouse.
Sorry if this sounds rough, but in order for your suggestion to carry
any weight, we need to see that you understand HTML first. Your
example is not an example of best practice. In fact it is the opposite.