Jump to content

bd1e0d0

Members
  • Posts

    27
  • Joined

  • Last visited

Everything posted by bd1e0d0

  1. I find it easier to just put:table { background: url('back.gif') repeat-x white;} Or something like that.
  2. I just usually do this:In the <script> I assign a function like so:function setReadOnly() { document.getElementById("textarea").readonly="readonly"; }And then I'll assign to the <body> an onLoad event:<body onLoad="setReadOnly();">And then with <textarea>, I do this:<textarea id="textarea" cols="blah" rows="blah"><!--sometext--></textarea>On a personal note, I don't usually use textareas. But with most tags, I usually do this sort of thing. (Especially with .style for DOM and stuff like that.) BTW - If that don't work, it should. SPELLING COUNTS!
×
×
  • Create New...