graphonline/i/js/dev/msg.js
2017-04-15 01:34:36 +03:00

15 lines
280 B
JavaScript
Executable File

$(document).ready
(
function()
{
$(".msg, .msg-ok, .msg-err").on
(
"click",
function()
{
$(this).fadeOut('fast');
}
);
}
);