MediaWiki:Common.js : Différence entre versions

De Wiki ODR
Aller à : navigation, rechercher
Ligne 5 : Ligne 5 :
 
$(document).ready(function() {
 
$(document).ready(function() {
 
   $("#carre_odr").click(function(){
 
   $("#carre_odr").click(function(){
document.getElementById("carre_odr").style.box-shadow="0px -3px 0px red inset" ;  
+
document.getElementById("carre_odr").style.box-shadow="0px -3px 0px red" ;  
 
       window.open('./Sous_portail_odr','mywindow');
 
       window.open('./Sous_portail_odr','mywindow');
 
       return false;
 
       return false;

Version du 21 juillet 2017 à 11:20

/* Tout JavaScript ici sera chargé avec chaque page accédée par n’importe quel utilisateur. */
// Can also be used with $(document).ready()

/*Carré ODR*/
$(document).ready(function() {
   $("#carre_odr").click(function(){
document.getElementById("carre_odr").style.box-shadow="0px -3px 0px red" ; 
      window.open('./Sous_portail_odr','mywindow');
      return false;
   });
});

/*Carré FEADER*/
$(document).ready(function() {
   $("#carre-feader").click(function(){
document.getElementById("carre-feader").style.cursor = "pointer"; 
      window.open('http://www.europe-en-france.gouv.fr/','mywindow');
      return false;
   });
});