Get Value Of Selected In Ddslick Dropdown August 20, 2023 Post a Comment This currently returns undefined. What should go in the commented line to alert the value (1, 2, 3 or 4) of the current tag? Solution 1: Use $(this).val() in place of $(this).attr('id')The value of the currently selected <option> is returned when you call .val() on the <select> element.Solution 2: $('#dropdown').ddslick({ showSelectedHTML: false, onSelected: function(selectedData){ var str = $(this).val() alert(str); } }); CopySo, use val() instead of attr('id')Solution 3: According to the docs for your plugin, the onSelected method gets the selectedData parameter:selectedData (nested object with text, value, description, imageSrc)The text label and value are available as selectedData.text and selectedData.value inside the onSelected function. Try this:$('#dropdown').ddslick({ showSelectedHTML: false, onSelected: function(selectedData){ var str = selectedData.valuealert(str); } }); CopySolution 4: I got it!! if you want to get the attribute value you set in your array where your data is coming from you get your value like this->$('#id').ddslick({ data:dropdowndata, width:60, selectText: "Select Circle", imagePosition:"left", //dropdowndata[4].selected:trueonSelected: function(selectedData){ val = selectedData.selectedIndex; alert(dropdowndata[val].value); CopySolution 5: if you want to post the data, create a hidden input, use jquery to set the value of the hidden field then post the hidden field$('.ddslick_drop_down').ddslick({ onSelected: function(selectedData){ //set the value to a hidden field then post the hidden field $('#dish_id').val(selectedData.selectedData.value); Share Post a Comment for "Get Value Of Selected In Ddslick Dropdown" Top Question Split Comma Separated String By Comma Need to split the string containing country names separated… Changing Font Size Options On WYSIWYG Editor? So I have a bootstrap wysiwyg editor from a jqueryscript.ne… What Is The Correct Way To "serialize" Functions In Javascript For Later Use I have a 'library' of objects that I want to load o… Bootstrap Counter Start On Display So I found this codepen tutorial that helped me get number … Select And Unselect All Checkboxes I'm not able to implement these things,In this page I w… Undo Redo For Fabric.js I'm trying to add undo/redo functionality to my Fabric.… Three.js - Scale Model With Scale.set() Or Increase Model Size? What is the best practise for scaling 3d models in Three.js… How Does Node.JS Work As Opposed To PHP? I'm thinking of switching from PHP to using Node.js for… Google Maps Api V3: Exclude Single Marker From Clustering I am using the google maps api and using grid clustering fo… Logic For The Next Button For The Questionnaire? I am beginner in AngularJS and facing some issues. I am try… December 2024 (1) November 2024 (37) October 2024 (63) September 2024 (20) August 2024 (385) July 2024 (340) June 2024 (706) May 2024 (1296) April 2024 (848) March 2024 (1553) February 2024 (1722) January 2024 (1374) December 2023 (1396) November 2023 (450) October 2023 (631) September 2023 (335) August 2023 (350) July 2023 (265) June 2023 (378) May 2023 (204) April 2023 (134) March 2023 (143) February 2023 (183) January 2023 (280) December 2022 (131) November 2022 (247) October 2022 (168) September 2022 (167) August 2022 (500) July 2022 (314) June 2022 (260) Menu Halaman Statis Beranda © 2022 - javascript edu