Topic: How do you add font awesome icons as a select list option with text next to it?
I need to add font awesome icons to the options of a select list (dropdown). How would one do that? Thanks!
kylebehse pro answered 6 years ago
Any one interested? I did this:
var theOptions3 = [];
$('.select option').each(function( index ) {
var theHTMLString = $( this ).data('content');
var theObject = new Object();
console.log(JSON.stringify(theObject));
theOptions3.push(theObject);
console.log( index + ": " + $( this ).data('content') );
});
$('.mdb-select ul.dropdown-content li').each(function( index ){
var theInsert = theOptions3[index].html;
$(this).find('span').html(theInsert);
});
cdenby pro answered 5 years ago
Why does data-fas-classes exist in the https://mdbootstrap.com/docs/jquery/forms/select/#select-options-and-attributes page? How do you use this?
Grzegorz Bujański staff commented 5 years ago
I answered you here: https://mdbootstrap.com/support/jquery/how-do-you-add-font-awesome-icons-as-a-select-list-option-with-text-next-to-it/
FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Answered
- User: Pro
- Premium support: No
- Technology: MDB jQuery
- MDB Version: 4.5.6
- Device: Desktop
- Browser: Chrome
- OS: Mac OS
- Provided sample code: No
- Provided link: No