sort of confusing to explain but I have a 'select' dropdown that doesn't exist on page load, and I need to take the selected text value of it when it does exist, and display it into a div on the page. My jquery is as follows:`
var conceptName = $('select[name="ShippingSpeedChoice"]').find(":selected").text();
$('select[name="ShippingSpeedChoice"]').on("change", "paste", function(){$('.valss').html('+conceptName+');
});
`Any ideas what I'm doing wrong? Thanks for the help!