how we can get the result of two dropdown in text.

Hi,

You can use the code below. Create an onChange event handler on your textbox. In the event handler take the new value from the event object and put it in a variable for you to use.

$w ( “#myTextBox” ). onChange ( ( event ) => {
let newValue = event . target . value ; // “new value”
});

Good luck,
Asaf