MediaWiki:Common.js : Différence entre versions
De Wiki ODR
| Ligne 13 : | Ligne 13 : | ||
/*Carré FEADER*/ | /*Carré FEADER*/ | ||
$(document).ready(function() { | $(document).ready(function() { | ||
| − | $("# | + | $("#carre-feader").click(function(){ |
| − | document.getElementById(" | + | document.getElementById("carre-feader").style.cursor = "pointer"; |
window.open('http://www.europe-en-france.gouv.fr/','mywindow'); | window.open('http://www.europe-en-france.gouv.fr/','mywindow'); | ||
return false; | return false; | ||
}); | }); | ||
}); | }); | ||
Version du 7 juillet 2017 à 09:35
/* 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.cursor = "pointer";
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;
});
});

