Skip to main content

Command Palette

Search for a command to run...

Oracle APEX - Get the Text or Value of a Selected Option

Updated
1 min read
Oracle APEX - Get the Text or Value of a Selected Option
D

I ❤️ Oracle APEX

var optionText  = $("#P1_ITEM :selected").text();
var optionValue = $("#P1_ITEM :selected").val();