jQuery(document).ready(function(){
var w = '#world';
var r = '#russia';
var tt = '.tooltip';
var time = 200;
jQuery(w).hover(
function() {
jQuery(w).children(tt).fadeIn(time);
},
function() {
jQuery(w).children(tt).fadeOut(time);
});
jQuery(r).hover(
function() {
jQuery(r).children(tt).fadeIn(time);
},
function() {
jQuery(r).children(tt).fadeOut(time);
});
});
Написал такую штуку, для появления так называемых ToolTip.
Помогите сократить код, вижу что можно, но как незнаю. Мало еще познаний в JS и jQuery.