Zapamiętywanie rozwijania lista

Założony przez  czesioo.

wersja skryptu MyBB: 1.8.6
adres forum: http://silverhax.pl/
na czym polega problem (screen, opis, komunikaty):

Na mojej stronie po prawej w menu mam jest lista rozwijana "Superliga". Jak zrobić by po rozwinięciu tej listy ta lista była rozwinięta do puki jej się nie zwinie? Jakoś w PHP może?
"save in jquery cookie dropdown menu position"
google Ci pomoże
Mam taki kod do JS

<script>
jQuery.cookie = function(name, value, options) {
   if (typeof value != 'undefined') { // name and value given, set cookie
       options = options || {};
       if (value === null) {
           value = '';
           options.expires = -1;
       }
       var expires = '';
       if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
           var date;
           if (typeof options.expires == 'number') {
               date = new Date();
               date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
           } else {
               date = options.expires;
           }
           expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
       }
       // CAUTION: Needed to parenthesize options.path and options.domain
       // in the following expressions, otherwise they evaluate to undefined
       // in the packed version for some reason...
       var path = options.path ? '; path=' + (options.path) : '';
       var domain = options.domain ? '; domain=' + (options.domain) : '';
       var secure = options.secure ? '; secure' : '';
       document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
   } else { // only name given, get cookie
       var cookieValue = null;
       if (document.cookie && document.cookie != '') {
           var cookies = document.cookie.split(';');
           for (var i = 0; i < cookies.length; i++) {
               var cookie = jQuery.trim(cookies[i]);
               // Does this cookie string begin with the name we want?
               if (cookie.substring(0, name.length + 1) == (name + '=')) {
                   cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                   break;
               }
           }
       }
       return cookieValue;
   }
};
/* Here's the actual code. */
if($.cookie('remember_select') != null) {
   $('.select_class option[value="' + $.cookie('remember_select') + '"]').attr('selected', 'selected');
}
$('.select_class').change(function() {
   $.cookie('remember_select', $('.select_class option:selected').val(), { expires: 90, path: '/'});
});
</script>


I teraz nie mam pojęcia jak miałoby to zadziałać na na <li> bo działa tylko na <select>

Kod działający z select
<select class="select_class">
   <option value="1">Row 1</option>
   <option value="2">Row 2</option>
   <option value="3">Row 3</option>
</select>


Jak to zrobić pod <li>
szukaj dalej, widzialem tez na SO taki kod pod L LI



Użytkownicy przeglądający ten wątek:

1 gości