MediaWiki:Common.js: Difference between revisions

ਕੋਈ ਸੋਧ ਸਾਰ ਨਹੀਂ
No edit summary
No edit summary
Line 17: Line 17:




function toggleImage() {
$(document).ready(function() {
   var img = document.getElementById("mw-Mycanvas2");
   $("#mw-Mycanvas2").click(function() {
  if (img.src.includes("TopSide")) {
    if ($(this).attr("src").includes("TopSide")) {
    img.src = "https://simplywoodgrading.com/mediawiki/images/a/ab/20mmSoundKnot_ReededSide.jpg?20230319101142";
      $(this).attr("src", "https://simplywoodgrading.com/mediawiki/images/a/ab/20mmSoundKnot_ReededSide.jpg?20230319101142");
  } else {
    } else {
    img.src = "https://simplywoodgrading.com/mediawiki/images/e/ea/20mmSoundKnot_TopSide.jpg?20230319084600";
      $(this).attr("src", "https://simplywoodgrading.com/mediawiki/images/e/ea/20mmSoundKnot_TopSide.jpg?20230319084600");
   }
    }
}
   });
});