HTML

If you are creating an in-line scribble widget directly through HTML, you will be happy to know that you can actually go ahead and use the word INLINE in your INPUT tag. This is because our HTML parser will convert that INLINE attribute into the DEFAULTCHECKED attribute for you. For example:

<input type="scribble" width=200 height=80 name="jot1" inline>

is the same as

<input type="scribble" width=200 height=80 name="jot2" defaultchecked>