Jump to content

sowna

Members
  • Posts

    31
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by sowna

  1. Based on the dropdown values, you want to redirect users to different page, right? I consider you will button in the form. On clicking the button, call below function... function redirect() { if(document.getElementById('select_17').value == 'Ja' && document.getElementById('select_18').value == 'Ja') { window.location.replace = 'both parents url'; } else if(document.getElementById('select_17').value != 'Ja' && document.getElementById('select_18').value != 'Ja') { window.location.replace = 'both parents not coming url'; } else { window.location.replace = 'one parents coming url'; } }
  2. what error you getting? or how you saying ur function is not working as expected?
×
×
  • 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.