SitePoint Sponsor |
|
User Tag List
Results 1 to 6 of 6
Thread: How do you hide a check box?
-
Nov 24, 2004, 02:52 #1
- Join Date
- Oct 2004
- Location
- Philippines
- Posts
- 32
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
How do you hide a check box?
Hi All,
Is there a way to hide a Text entry field?
Thanks a lot in advance.
jozin
-
Nov 24, 2004, 02:55 #2
- Join Date
- Oct 2004
- Location
- Philippines
- Posts
- 32
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
How to hide a Text entry field?
Correction please,
The titles should be:
How to hide a Text entry field:
jozin
-
Nov 24, 2004, 03:04 #3
- Join Date
- Nov 2004
- Location
- Edinburgh
- Posts
- 116
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Ummm, I'm not sure what you mean by "hide". Do you mean permanently or temporarily?
At the moment, the simplest way I can think of isCode:<input type="hidden" name="fieldname" value="fieldvalue" />
-Jean-Loup
-
Nov 24, 2004, 09:53 #4
- Join Date
- Aug 2004
- Location
- Madison, WI
- Posts
- 191
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
HTML Code:<input type="text" name="fieldname" style="visibility:hidden;display:none;" />
-
Nov 24, 2004, 17:52 #5
- Join Date
- Oct 2004
- Location
- Philippines
- Posts
- 32
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Hi guys,
Thanks a lot for the tip.
jozin
-
Nov 25, 2004, 02:33 #6
- Join Date
- Mar 2004
- Posts
- 1,647
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
something like this...
HTML Code:<input type="text" name="hey" style="display:none;position:absolute;">
cheers
Bookmarks