summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--js/jquery.multi-select.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/jquery.multi-select.js b/js/jquery.multi-select.js
index fbeec76..e898ac6 100644
--- a/js/jquery.multi-select.js
+++ b/js/jquery.multi-select.js
@@ -23,7 +23,7 @@
ms.data('settings', multiSelects.settings);
ms.children('option').each(function(){
- var selectableLi = $('<li ms-value="'+$(this).val()+'">'+$(this).text()+'</li>').detach();
+ var selectableLi = $('<li ms-value="'+$(this).val()+'" title="' + $(this).val('title') + '">'+$(this).text()+'</li>').detach();
selectableLi.click(function(){
ms.multiSelect('select', $(this).attr('ms-value'));