Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <select id="icon">
  2. <option value="img`">Img 1</option>
  3. <option value="img2">Img 2</option>
  4. </select>
  5.  
  6. var formatResult = function (state) {
  7. if (state.id === "profile") return "<img src='img.png' width=48 />";
  8. else return "<img src='img2.png' width=48 />";
  9. };
  10. $('#icon').select2({
  11. formatResult: formatResult,
  12. formatSelection: formatResult,
  13. minimumResultsForSearch: -1,
  14. width: 90
  15. });
  16.  
  17. .select2-choice {
  18. height:60px !important;
  19. width:90px
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement