Capture Selected Values From Dynamic Drop-down Lists Using Javascript February 28, 2024 Post a Comment I'm trying to get the value from dynamic drop-down list in my form, but my code isn't working. View.php CopyWhere #id is the id of your select inputSolution 2: To check if there is a dynamic Drop down you can simple check if the selector exists with $('#elemId').length>0CopyAnd for selected value you can use $("#selectorid").find("option:selected").val(); Share Post a Comment for "Capture Selected Values From Dynamic Drop-down Lists Using Javascript"
Post a Comment for "Capture Selected Values From Dynamic Drop-down Lists Using Javascript"