Current location: Hot Scripts Forums » General Web Coding » JavaScript » Forms help input box switch to Select box


Forms help input box switch to Select box

Reply
  #1 (permalink)  
Old 04-18-05, 10:39 AM
dstran dstran is offline
New Member
 
Join Date: Apr 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Forms help input box switch to Select box

I have a form with an input box and a button next to it
if the button is clicked, I would like the input box to be
changed to a select box, is this possible ? with or without layers
thanks in advance.
Reply With Quote
  #2 (permalink)  
Old 04-19-05, 12:17 AM
TwoD TwoD is offline
Community VIP
 
Join Date: Sep 2003
Location: 404
Posts: 1,813
Thanks: 0
Thanked 0 Times in 0 Posts
Here's one version using <div> tags. You can also rewrite the specific tag you want changed using scripts but that's a bit more complicated if you want to change the selectbox often.
Code:
<script>
function change_box(use_box_2){
 document.getElementByID('alt1').style.display= use_box_2?'none':'block'
 document.getElementById('alt2').style.display= use_box_2?'block':'none'
 
}
</script>
</head>
<body>
<form>
<input type="checkbox" onclick="switch_tag(this.checked)"><br>
<div id="alt1">
<input type="input>
</div>
<div id="alt2">
<select><option>Test</select>
</div>
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Multiple column select box Dr-Leech HTML/XHTML/XML 1 08-30-04 11:27 PM
Using 'SELECT from' with value from a text box. steve711 PHP 1 06-17-04 06:37 PM
How to prepopulate file input box? cgott42 PHP 0 06-09-04 02:22 AM


All times are GMT -5. The time now is 10:46 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.