12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //[Javascript]
- $(function () {
- "use strict";
-
- //Alerts
- $(".myadmin-alert .closed").click(function(event) {
- $(this).parents(".myadmin-alert").fadeToggle(350);
- return false;
- });
- /* Click to close */
- $(".myadmin-alert-click").click(function(event) {
- $(this).fadeToggle(350);
- return false;
- });
- $(".showtop").click(function() {
- $(".alerttop").fadeToggle(350);
- });
- $(".showtop2").click(function() {
- $(".alerttop2").fadeToggle(350);
- });
- /** Alert Position Bottom **/
- $(".showbottom").click(function() {
- $(".alertbottom").fadeToggle(350);
- });
- $(".showbottom2").click(function() {
- $(".alertbottom2").fadeToggle(350);
- });
- /** Alert Position Top Left **/
- $("#showtopleft").click(function() {
- $("#alerttopleft").fadeToggle(350);
- });
- /** Alert Position Top Right **/
- $("#showtopright").click(function() {
- $("#alerttopright").fadeToggle(350);
- });
- /** Alert Position Bottom Left **/
- $("#showbottomleft").click(function() {
- $("#alertbottomleft").fadeToggle(350);
- });
- /** Alert Position Bottom Right **/
- $("#showbottomright").click(function() {
- $("#alertbottomright").fadeToggle(350);
- });
-
- }); // End of use strict
|