PROBLEM - Javascript / JQuery - Get the display text ( between tags ) using the element value


Problem


Get the DOM element display text ( between tags ) using the element value.


Solution Code


var fieldText = $('#fieldId option[value="' + fieldValue + '"]').text();

where fieldId is the id of the DOM element and fieldValue is the value of the element.