הבדלים בין גרסאות בדף "מדיה ויקי:Common.js"
מתוך ויקירפואה
שורה 2: | שורה 2: | ||
importScript("MediaWiki:Navigationbar.js"); | importScript("MediaWiki:Navigationbar.js"); | ||
+ | |||
+ | // Anything in this function wrapper will be executed when the page is | ||
+ | ready for action | ||
+ | ( function( $ ) { | ||
+ | $( document ).ready( function() { | ||
+ | |||
+ | // Open external links in the sidebar in a new window | ||
+ | $( '#mw-panel, #panel' ) // #panel is for pre-1.17 compatibility | ||
+ | .find( 'li a' ) | ||
+ | .filter( '[href^=http://], [href^=https://]' ) | ||
+ | .attr( 'target' , '_blank' ); | ||
+ | } ); | ||
+ | } )( jQuery ); |
גרסה מ־07:35, 13 באפריל 2011
/* כל סקריפט JavaScript שנכתב כאן ירוץ עבור כל המשתמשים בכל טעינת עמוד */ importScript("MediaWiki:Navigationbar.js"); // Anything in this function wrapper will be executed when the page is ready for action ( function( $ ) { $( document ).ready( function() { // Open external links in the sidebar in a new window $( '#mw-panel, #panel' ) // #panel is for pre-1.17 compatibility .find( 'li a' ) .filter( '[href^=http://], [href^=https://]' ) .attr( 'target' , '_blank' ); } ); } )( jQuery );