<script type="text/javascript">
function randSign() { return 0.5 - Math.random() }
$(function() {
var values = [],
items = $('li#one');
items.each(function(index) {
values.push( items.eq(index).text() )
})
values.sort(randSign)
items.each(function(index) {
items.eq(index).text( values[index] )
})
})
</script>
Вот сейчас все мешает отлично, но форматирование не сохраняется, почему так?