Jump to content

Ajax Form Kind Of Helper


winmastergames

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/92694-ajax-form-kind-of-helper/
Share on other sites

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 .

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.