|SOLVED| If user input is filled another input is required

Worked PERFECTLY!!! Thank you so much.

Here is the complete code. Hopefully it helps others. All I had to do was duplicate what you advised to execute how I needed.

$w . onReady (() => {
$w ( ‘#input203’ ). onInput ( event => {
$w ( ‘#input202’ ). required = !! $w ( ‘#input203’ ). value . trim ();
$w ( ‘#input201’ ). required = !! $w ( ‘#input203’ ). value . trim ();
$w ( ‘#input200’ ). required = !! $w ( ‘#input203’ ). value . trim ();
})
})

$w . onReady (() => {
$w ( ‘#input207’ ). onInput ( event => {
$w ( ‘#input206’ ). required = !! $w ( ‘#input207’ ). value . trim ();
$w ( ‘#input205’ ). required = !! $w ( ‘#input207’ ). value . trim ();
$w ( ‘#input204’ ). required = !! $w ( ‘#input207’ ). value . trim ();
})
})

$w . onReady (() => {
$w ( ‘#input211’ ). onInput ( event => {
$w ( ‘#input210’ ). required = !! $w ( ‘#input211’ ). value . trim ();
$w ( ‘#input209’ ). required = !! $w ( ‘#input211’ ). value . trim ();
$w ( ‘#input208’ ). required = !! $w ( ‘#input211’ ). value . trim ();
})
})