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'); }
|
||
|
);
|
||
|
|
||
|
});
|
||
|
|