6 lines
98 B
JavaScript
6 lines
98 B
JavaScript
|
function init() {
|
||
|
$(".alert_header").click(function() {$(this).next().toggle(); });
|
||
|
}
|
||
|
|
||
|
$(init);
|