Difference between revisions of "MediaWiki:Common.js"
Mscottmoore (talk | contribs) (Testing for pinyin table) |
Mscottmoore (talk | contribs) m (Pinyin table testing) |
||
Line 3: | Line 3: | ||
/*pinyin table scripts*/ | /*pinyin table scripts*/ | ||
$(document).ready( function() { | $(document).ready( function() { | ||
− | $('#table-settings').append('< | + | $('#table-settings').append('<p><strong>TEST</strong></p>'); |
$('.table-zhuyin').hide(); | $('.table-zhuyin').hide(); | ||
$('.table-wade-giles').hide(); | $('.table-wade-giles').hide(); |
Revision as of 03:05, 8 January 2015
/* Any JavaScript here will be loaded for all users on every page load. */
/*pinyin table scripts*/
$(document).ready( function() {
$('#table-settings').append('<p><strong>TEST</strong></p>');
$('.table-zhuyin').hide();
$('.table-wade-giles').hide();
$('#table-toggle-ipa').change( function() {
if (this.val()) {
$('.table-ipa').show();
} else {
$('.table-ipa').hide();
};
});
});