Skip to content Skip to sidebar Skip to footer

How To Display Selected Item From Bootstrap Dropdown?

I know this question has been asked and answered a lot, but I still can't figure it out within my code. Updated code {% trans_default_domain 'Documents' %}

Solution 1:

you probably need something like this

$('#documentDropdown').find(":selected").text();

for value

$('#documentDropdown').find(":selected").val();

Post a Comment for "How To Display Selected Item From Bootstrap Dropdown?"