- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
$(function(){
// ... тут могла быть ваша реклама
var answers_height = 0;
$(".game-test .answers li a").each(function(){ // Array.prototype.sort не для нас (как и underscore.js' max)
if (answers_height < $(this).height()) answers_height = $(this).height();
}).click(function(){ // чувак не в курсе, что можно вешать онклик прямо на li
$(this).parent().addClass("checked").siblings().removeClass("checked"); // ничего jQuery#parent() нас спасёт
$(this).parent().find("input").click(); // замкнуть инпут в переменную не для нас
alert($(this).parent().parent().find("input:checked").val()); // да и зачем, когда есть jQuery?
return false; // Event#preventDefault() не для нас, но ничего, jQuery поймёт и так
});
$(".game-test .answers li a").height(answers_height); // ах да, совсем забыл...
});