blob: cd4dac6b9120ea9a5e077eb483dde26507c2e19b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
function initSQLPopups() {
$('div.popup_sql').hide();
$('a.sql_link').click(function() {
$(this).nextAll('div.popup_sql:first').toggle();
return false;
})
}
$(document).ready(function() {
initSQLPopups();
});
|