My requirement is to send select component selected value to some rest api can you help me to get select component value in javascript once the user select a value from select coponent?
My requirement is to send select component selected value to some rest api can you help me to get select component value in javascript once the user select a value from select coponent?
Hello!
"once the user select a value from select coponent" - you need Value change event. In JS code added on this event you can retrieve select value this way pre$(this).val()/preor in any other JS added on any event preAppery("mobileselectmenuName").val()/pre
Thanks It worked