Вот код:
function jWnd(sets) {
var header = sets.header ? '<div style="position: relative; background: #555; border-bottom: 3px solid orange; width: ' + sets.w + 'px; height: 20px;">' + sets.header + '</div>': '';
var content = '<div style="position: relative; background: #555; width: ' + sets.w + 'px; height: ' + sets.h + '">' + sets.content + '</div>';
var x = $('<div style="position: fixed; opacity: 0">' + header + content + '</div>');
x.appendTo($('body')).css({
top: ($(document).height() - $(x).height()) / 2,
left: ($(document).width() - $(x).width()) / 2
}).animate({
opacity: 1
},
1000);
};
При вызове jWnd из скрипта всё работает, а если попытаться сделать это в onclick ссылки — ничего нет. Где ошибка?