blob: d7be898a7f3bd5e57ac22a66d41b49732443e521 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/*
Student Name: Name Surname
File Name: script.js
Date: 2024/12/01
*/
// jQuery for hero image to consume the header window space
$(document).ready(function(){
$('.hero').height($(window).height());
});
|