• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

border of textbox

 
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Any way can I disable the border of the textbox?Any stylesheet can do this?
My form has 3 fields. exam1_i , exam2_i and mark_i.
exam1 and exam2 are input fields.
In the 'onChange' status, I pass 'this' to the a javascript function for caculating the final mark and put this mark to the input text box which is readonly.
input type="text" name="mark_%=i%" size="3" readonly="readonly" value=%=mark%
Thanks
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you can use css to get rid of the border
either set it to zero width or set it to the same color of the background.
 
reply
    Bookmark Topic Watch Topic
  • New Topic