git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1138 2a923420-c742-0410-a762-8d5b09965624
19 lines
354 B
JavaScript
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'); }
|
|
);
|
|
|
|
});
|
|
|