Показать сообщение отдельно
  #5 (permalink)  
Старый 26.09.2011, 17:19
Интересующийся
Отправить личное сообщение для DoubleShot Посмотреть профиль Найти все сообщения от DoubleShot
 
Регистрация: 06.06.2011
Сообщений: 13

М.б не так понял... я сделал вот так

$(document).ready(function() {
    var miniPlayer = $('div.miniPlayer');

    miniPlayer.live('click', function() {
        miniPlayer.each(function() {
            $(this).children('img.playerImg').show();
            $(this).children('div.hidePlayer').hide(); 
        });
        $(this).children('img.playerImg').hide();
        $(this).children('div.hidePlayer').show();
    });
})
Ответить с цитированием