« MediaWiki:Common.js » : différence entre les versions
De Wiki Campus Cyber
Aucun résumé des modifications Balise : Révocation manuelle |
Aucun résumé des modifications Balise : Révoqué |
||
Ligne 17 : | Ligne 17 : | ||
window.location = url; | window.location = url; | ||
} ); | } ); | ||
}) | |||
/* Pages en anglais */ | |||
jQuery( document ).ready( function( $ ) { | |||
// on post click go to article url | |||
$( 'span.en_anglais a' ).attr("href").append("/en"); | |||
}) | }) |
Version du 1 novembre 2023 à 19:27
/* Tout JavaScript présent ici sera exécuté par tous les utilisateurs à chaque chargement de page. */ /* Clic sur l'entièreté des div RSS de la page d'accueil */ jQuery( document ).ready( function( $ ) { // on post click go to article url $( '.rss-item' ).unbind().click(function() { var url = $(this).find("a").attr("href"); window.open(url, '_blank'); } ); }) /* Clic sur l'entièreté des div #ask de la page d'accueil */ jQuery( document ).ready( function( $ ) { // on post click go to article url $( '.class-item' ).unbind().click(function() { var url = $(this).find("a").attr("href"); window.location = url; } ); }) /* Pages en anglais */ jQuery( document ).ready( function( $ ) { // on post click go to article url $( 'span.en_anglais a' ).attr("href").append("/en"); })