User:Soxra/monobook.js: Difference between revisions

From the Kingdom Hearts Wiki, the Kingdom Hearts encyclopedia
Jump to navigationJump to search
(Kay, legit srs, that code is way more than we need, lol.)
(Undo revision 573055 by Soxra (talk))
 
(3 intermediate revisions by the same user not shown)
Line 9: Line 9:
         return false;
         return false;
     });
     });
});
/* ***************************************** */
$(document).ready(function() {
$(".morphMaster").each(function() {
var $master = $(this);
var $tabs = $master.find(".morphTabBox");
var $container = $master.find(".morphTabContainer");
$tabs.find(".morphLink").click(function() {
var id = $(this).attr("id");
id = id.substr(0, id.length - 4);
$container.find("div.morphContent").hide();
$container.find("div#"+id+"Content").show();
});
});
});
});

Latest revision as of 01:23, 8 August 2012

$(document).ready(function () {
    /* Force input boxes to have input box class */
    $(":text, input[type='text'], input[type='password'], input[type='search'], textarea, input#wpSummary").addClass("input-text-box");

    /* Improvement Box Tabber */
    $(".improvementBox").find(".improveTabLinkBox a").click(function () {
        $(".improvementBox").find("#improveTabs > div").hide();
        $(".improvementBox").find("#improveTabs > div" + $(this).attr("href")).show();
        return false;
    });
});