hummypkg 49170bdd39 initial remote
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1138 2a923420-c742-0410-a762-8d5b09965624
2012-10-01 19:53:02 +00:00

19 lines
354 B
JavaScript

$(function() {
$('area').click(function() {
var code = $(this).attr('code');
var x = $(this).attr('xmit');
console.log("CODE: %o", code);
$('#xmit' + x).fadeIn('fast').delay(500).fadeOut('fast');
$.get('send.jim?code=' + code);
}).hover(
function() { $(this).css('cursor', 'pointer'); },
function() { $(this).css('cursor', 'auto'); }
);
});