peternameyakj
2024-10-24 7621191445c6f37f0d8253657560be6202778395
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
/** Alert Position Top  **/
$(document).ready(function(){
    $("#showtop").click(function(){
        $("#alerttop").fadeToggle(350);
    });
});
 
/** Alert Position Bottom  **/
$(document).ready(function(){
    $("#showbottom").click(function(){
        $("#alertbottom").fadeToggle(350);
    });
});
 
/** Alert Position Top Left  **/
$(document).ready(function(){
    $("#showtopleft").click(function(){
        $("#alerttopleft").fadeToggle(350);
    });
});
 
/** Alert Position Top Right  **/
$(document).ready(function(){
    $("#showtopright").click(function(){
        $("#alerttopright").fadeToggle(350);
    });
});
 
/** Alert Position Bottom Left  **/
$(document).ready(function(){
    $("#showbottomleft").click(function(){
        $("#alertbottomleft").fadeToggle(350);
    });
});
 
/** Alert Position Bottom Right  **/
$(document).ready(function(){
    $("#showbottomright").click(function(){
        $("#alertbottomright").fadeToggle(350);
    });
});