//짧은 텍스트에서 긴 텍스트로 정렬
var arr_a= new Array();
var i=0;
$(".type_list_txt >span:contains('T-shirt')").parent().children("a").each(function (){
arr_a[i ]=$(this).clone();
i
})
for(i=0; i
{
for(j= i 1;j{
if($(arr_a[i]).text().length > $(arr_a[j] ).text().length )
{
temp=arr_a[i];
arr_a[i]=arr_a[j]
arr_a[j]=temp; 🎜>}
}
i=0;
$(".type_list_txt >span:contains('T-shirt')").parent().children("a").each( function(){
$(this ).replaceWith($(arr_a[i]))
i
});