Difference between revisions of "MediaWiki:Common.js"

From Phoenix Cart User Guide
(Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: jQuery(function(){ jQuery(".btn-back").click(function(){ window.history.back(); }); });")
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
jQuery(function(){
 
jQuery(function(){
 
+
    jQuery(".btn-back").click(function(){
jQuery(".btn-back").click(function(){
+
        window.history.back();
 
+
    });
window.history.back();
+
    jQuery(".btn-home").click(function(){
 
+
        window.location.href = "/phoenixcartwiki/index.php";
});
+
    });
 
+
    jQuery(".btn-admin").click(function(){
 +
        window.location.href = "/phoenixcartwiki/index.php/ADMINISTRATION";
 +
    });
 +
    jQuery(".btn-intro").click(function(){
 +
        window.location.href = "/phoenixcartwiki/index.php/INTRODUCTION";
 +
    });
 +
    jQuery(".btn-setup-shop").click(function(){
 +
        window.location.href = "/phoenixcartwiki/index.php/SET_UP_SHOP";
 +
    });
 +
    jQuery(".btn-faq").click(function(){
 +
        window.location.href = "/phoenixcartwiki/index.php/FAQS_TIPS_%26_TRICKS";
 +
    });
 +
    jQuery(".btn-must-have").click(function(){
 +
        window.location.href = "/phoenixcartwiki/index.php/MUST_HAVE_TOOLS";
 +
    });
 +
    jQuery(".btn-download").click(function(){
 +
        window.location.href = "/phoenixcartwiki/index.php/DOWNLOAD_&_INSTALL";
 +
    });
 
});
 
});

Latest revision as of 16:41, 26 February 2025

/* Any JavaScript here will be loaded for all users on every page load. */
jQuery(function(){
    jQuery(".btn-back").click(function(){
        window.history.back();
    });
    jQuery(".btn-home").click(function(){
        window.location.href = "/phoenixcartwiki/index.php";
    });
    jQuery(".btn-admin").click(function(){
        window.location.href = "/phoenixcartwiki/index.php/ADMINISTRATION";
    });
    jQuery(".btn-intro").click(function(){
        window.location.href = "/phoenixcartwiki/index.php/INTRODUCTION";
    });
    jQuery(".btn-setup-shop").click(function(){
        window.location.href = "/phoenixcartwiki/index.php/SET_UP_SHOP";
    });
    jQuery(".btn-faq").click(function(){
        window.location.href = "/phoenixcartwiki/index.php/FAQS_TIPS_%26_TRICKS";
    });
    jQuery(".btn-must-have").click(function(){
        window.location.href = "/phoenixcartwiki/index.php/MUST_HAVE_TOOLS";
    });
    jQuery(".btn-download").click(function(){
        window.location.href = "/phoenixcartwiki/index.php/DOWNLOAD_&_INSTALL";
    });
});