How to add thumbnail to pop up after using jQuery Chosen plugin?

I used the selected jquery plugin to create a beautiful drop down list. The contents of the drop-down list are the names of the image files. I want to show a small thumbnail image of each image file next to the drop-down lists.

enter image description here

Any suggestion would be appreciated.

+4
source share
2 answers

The specified extension is not adequate, the image elements will disappear during the search. Try the following extension: https://github.com/djgrant/chosen-image But config:

$(".my-select").chosenImage({
  disable_search: false
});
+4
source

Source: https://habr.com/ru/post/1536730/


All Articles