MediaWiki:Common.js: Difference between revisions

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




document.onload = function () {
$(function () {
    alert(3);
  $(".img100").each(function(){
}


$(function () {
    $(this).attr('target', '_blank')
    alert(33);
  })
})
})

Revision as of 00:30, 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").each(function(){

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