2012-03-13 22:31:46 +00:00
|
|
|
var ajaxpolltmp;
|
|
|
|
|
|
|
|
$(".ajaxpoll-answer-vote").live("mouseover",
|
|
|
|
function(){
|
|
|
|
var sp=$(this).find("span");
|
|
|
|
ajaxpolltmp=sp.html();
|
|
|
|
sp.text(sp.attr("title"));
|
|
|
|
sp.attr("title","");
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$(".ajaxpoll-answer-vote").live("mouseout",
|
|
|
|
function(){
|
|
|
|
var sp=$(this).find("span");
|
|
|
|
sp.attr("title",sp.text());
|
|
|
|
sp.text(ajaxpolltmp);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2012-03-13 22:48:18 +00:00
|
|
|
$(".ajaxpoll-answer-name:not(.ajaxpoll-answer-name-revoke) label").live("mouseover",
|
2012-03-13 22:31:46 +00:00
|
|
|
function(){
|
|
|
|
$(this).addClass("ajaxpoll-hover-vote");
|
|
|
|
}
|
|
|
|
);
|
2012-03-13 22:48:18 +00:00
|
|
|
$(".ajaxpoll-answer-name:not(.ajaxpoll-answer-name-revoke) label").live("mouseout",
|
2012-03-13 22:31:46 +00:00
|
|
|
function(){
|
|
|
|
$(this).removeClass("ajaxpoll-hover-vote");
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2012-03-13 22:48:18 +00:00
|
|
|
$(".ajaxpoll-answer-name-revoke label").live("mouseover",
|
2012-03-13 22:31:46 +00:00
|
|
|
function(){
|
|
|
|
$(this).addClass("ajaxpoll-hover-revoke");
|
|
|
|
}
|
|
|
|
);
|
2012-03-13 22:48:18 +00:00
|
|
|
$(".ajaxpoll-answer-name-revoke label").live("mouseout",
|
2012-03-13 22:31:46 +00:00
|
|
|
function(){
|
|
|
|
$(this).removeClass("ajaxpoll-hover-revoke");
|
|
|
|
}
|
|
|
|
);
|