-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
44 lines (38 loc) · 1.13 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
$(document).ready(function(){
$('body').on('click', '#subscribe-button', function() {
window.open('https://ivypolicyconference.typeform.com/to/VqO51Q', '_blank');
});
$('body').on('click', '#housing-button', function() {
window.open('http://goo.gl/forms/9xsP0QS1jL', '_blank');
});
});
$(document).ready(function(){
$('body').on('mouseover', '#subscribe-button', function() {
$(this).attr('src', 'Images/InterestOff.png');
});
});
$(document).ready(function(){
$('body').on('mouseout', '#subscribe-button', function() {
$(this).attr('src', 'Images/InterestOn.png');
});
});
$(document).ready(function(){
$('body').on('mouseover', '#housing-button', function() {
$(this).attr('src', 'Images/HousingOn.png');
});
});
$(document).ready(function(){
$('body').on('mouseout', '#housing-button', function() {
$(this).attr('src', 'Images/HousingOff.png');
});
});
$(document).ready(function() {
$('body').on('mouseover', 'a', function() {
$(this).css('color', '#3b4372');
});
});
$(document).ready(function() {
$('body').on('mouseout', 'a', function() {
$(this).css('color', '#283060');
});
});