diff --git a/Font-Awesome-HTML-Dropdown-Select-List.md b/Font-Awesome-HTML-Dropdown-Select-List.md index af8e51b..8274f51 100644 --- a/Font-Awesome-HTML-Dropdown-Select-List.md +++ b/Font-Awesome-HTML-Dropdown-Select-List.md @@ -1,3 +1,17 @@ +List below is way depracated. +In order to manage to display FA V.4 in an HTML Select, you have to use http://silviomoreto.github.io/bootstrap-select/ + +This plugin allows you to use data-content attribute to display the icons. Example: +`$x = array( +'fa-arrows-v' => array('data-content' => "", 'value' => 'fa-arrows-v', 'name' => 'fa-arrows-v'), +'fa-beer' => array('data-content' => "", 'value' => 'fa-beer', 'name' => 'fa-beer'), +);` + +Populate your select with this array's format. + + +*** + ```