How to get on change selected option text in wordpress? You need to find selected value of select on change function jQuery. Below is the example jQuery(document).ready(function(){ jQuery("select#field").change(function(){ var thisvalue = $(this).find("option:selected").text(); alert(thisvalue)l }); });