Difference between revisions of "MediaWiki:Common.js"
From Beyond Social
| Line 8: | Line 8: | ||
/* for Editorial_selection Form */ | /* for Editorial_selection Form */ | ||
| + | |||
| + | //hide | ||
| + | var allarticles = $("lable[class^=issue_]"); //lable elements whose class starts with issue_ | ||
| + | allarticles.css('display','none'); | ||
//get issue check boxes | //get issue check boxes | ||
Revision as of 14:31, 17 December 2016
/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready(
function(){ console.log('hello js');}
)
/* for Editorial_selection Form */
//hide
var allarticles = $("lable[class^=issue_]"); //lable elements whose class starts with issue_
allarticles.css('display','none');
//get issue check boxes
var checkboxes = $('input.createboxInput[value*="Issue"]');
var clickedbox ;
var checked;
var boxval
checkboxes.click(
function(){
console.log('click');
clickedbox = $(this);
checked = clickedbox.prop('checked');
boxval = clickedbox.val();
console.log( clickedbox, checked, boxval );
// if checked == true -> show articles within baxval category
// if checked == false -> hide articles within baxval category
}
)