$(function(e) { $('.ms-ddl-iw').click(function(e) { e.stopImmediatePropagation(); $(this).find('.ms-ddl-l').toggleClass('visible'); }); $('.ms-ddl-l ul li').each(function(i, obj) { if ($(this).hasClass('selected')) { $(this).parent().parent().parent().find('.ms-ddl-v').text($(this).text()); $(this).parent().parent().parent().find('.ms-ddl-hv').val($(this).text()); } }); $('.ms-ddl-l li').click(function() { $(this).parent().parent().find('.selected').removeClass('selected'); $(this).addClass('selected'); $(this).parent().parent().parent().find('.ms-ddl-v').text($(this).find('span:first-child').text()); $(this).parent().parent().parent().find('.ms-ddl-hv').val($(this).find('span:first-child').text()); }); });