groups

name language licence
PHP : date en php Other Other
PHP : class mail PHP Other
PHP : expressions régulière PHP Other
PHP : detection ie6 et ie7 en php PHP Other
PHP : Boucle ecriture dans un fichier XML PHP Other
MAIL/HTML : remarques Other Other
MAIL : requete ping par mail Other Other
JS/JQUERY : infobulle en js+JQuery Other Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 >



language: Other
licence: Other

JS/JQUERY : infobulle en js+JQuery

options: view full snippetsend to code collector
//INFOBULLE : 


####################
//le code JS ( necessite JQUERY )

function Bulle(){
        
	//recuperation des coordonnées du curseur
	if (navigator.appName == "Microsoft Internet Explorer") { //si l'user est sous IE (bouh IE c'est null)
	
		x = event.x + document.body.scrollLeft;
	  	y = event.y + document.body.scrollTop;
	
	}
	
(Continues...)