-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJquery.js
More file actions
44 lines (41 loc) · 967 Bytes
/
Jquery.js
File metadata and controls
44 lines (41 loc) · 967 Bytes
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
/*Premium Pop-up*/
$(document).ready(function(){
$('#openPopup').click(function(){
$('#popup00, #overlayer').fadeIn();
});
$('#closePopup').click(function(){
$('#popup00, #overlayer').fadeOut();
});
});
/*Payment Pop-up*/
$(document).ready(function(){
$("#openPaypop").click(function(){
$("#paypop").show();
$("#paylayer").show();
})
$("#confirmButton").click(function(){
$("#confirmButton").hide();
$("#paydollar").hide();
$("#payment").show();
});
$("#closePaypop").click(function(){
$("#paypop").hide();
$("#paylayer").hide();
});
});
/*Albums*/
$(document).ready(function(){
$('.thumbnail-images img').on('mouseenter', function(){
var newSrc = $(this).attr('src');
var newAlt = $(this).attr('alt');
$('.main-image img').attr('src', newSrc);
$('.main-image .overlay05').text(newAlt);
});
});
/*Recent Songs*/
$(document).ready(function(){
$('.slider-img').on('mouseenter', function(){
$('.slider-img').removeClass('active');
$(this).addClass("active");
});
});