MediaWiki:Common.js: Difference between revisions

From Luminys WIKI
No edit summary
No edit summary
Line 5: Line 5:


$(function () {
$(function () {
   $(".img100").each(function(){
   $(".img100 a").each(function(){


     $(this).attr('target', '_blank')
     $(this).attr('target', '_blank')
   })
   })
})
})

Revision as of 00:31, 10 September 2024

// http://mediawiki.i.donnie.fun:8085/MediaWiki:Common.js
/* Any JavaScript here will be loaded for all users on every page load. */



$(function () {
   $(".img100 a").each(function(){

    $(this).attr('target', '_blank')
   })
})