winmastergames Posted February 24, 2008 Share Posted February 24, 2008 Is it possible to have like a Form with drop down Boxes and if you select something then it writes text saying like what you've selected with multiple drop down boxes like in one drop down box you say click male and the next one Age 18 then below it will write text saying Male 18 can you point me in the right direction like a JS script you can use to make it Quote Link to comment Share on other sites More sharing options...
priti Posted February 26, 2008 Share Posted February 26, 2008 well you really don't need a ajax request simple js will also work fine if(document.getElementById('sel1').value != '') document.getElementById('text').innerHTML=document.getElementById('sel1').value if(document.getElementById('sel1').value != '') document.getElementById('text').innerHTML= document.getElementById('text').innerHTML+ document.getElementById('sel1').value something like this if kept properly can help you . Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.