|
||||||
|
|
|
||||||||||||||||||||||||
MediaWiki:Common.js: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sanosuke'Matheus (discussão | contribs) (Criou página com '→Tooltips: $(document).ready(function() { $(".tip_trigger").hover(function(){ tip = $(this).find('.tip'); tip.show(); }, function() { tip.h...') |
|||
| Linha 1: | Linha 1: | ||
/* Tooltips */ | /* Tooltips */ | ||
$(document).ready(function() { | $(document).ready(function() { | ||
$(". | $(".tooltip").hover(function(){ | ||
tip = $(this).find('.tip'); | tip = $(this).find('.tip'); | ||
tip.show(); | tip.show(); | ||
Edição das 22h50min de 21 de agosto de 2012
/* Tooltips */
$(document).ready(function() {
$(".tooltip").hover(function(){
tip = $(this).find('.tip');
tip.show();
}, function() {
tip.hide();
}).mousemove(function(e) {
var mousex = e.pageX - 150;
var mousey = e.pageY - 165;
});
});