2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00
Files
CATI_Tool/js/headerexpand.js
azammitdcarf 821eec5463 Replaced display:inline with display:"" to avoid changing location of box
Added statusbox class
Removed headerexpander script from index unless selected in config file
Can specify whether to escape ampersands when using get_respondentselection_url function
2011-01-28 01:12:55 +00:00

22 lines
525 B
JavaScript

//Apply to all items of class header
$(document).ready(function(){
$(".header").hover(
//function on mouse over
function(){
$(".header").css("height","30%");
$(".content").css("height","70%");
$(".content").css("top","30%");
$(".box:not(.important)").css("display","");
},
//function on mouse out
function(){
$(".header").css("height","5%");
$(".content").css("height","95%");
$(".content").css("top","5%");
$(".box:not(.important)").css("display","none");
}
);
});