mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Images from OpenIconLibrary: http://openiconlibrary.sourceforge.net/gallery2/?./Icons/actions
12 lines
193 B
JavaScript
12 lines
193 B
JavaScript
//Apply to all items of class header
|
|
$(document).ready(function(){
|
|
$(".header").hover(
|
|
//function on mouse over
|
|
headerexpand,
|
|
|
|
//function on mouse out
|
|
headercontract
|
|
);
|
|
|
|
});
|