Сообщение от веснушка
|
поверх страницы. заранее нельзя создать, как я поняла.
а именно при mouseup его нужно создать и поместить туда данные
|
function showTxt(content){
newdiv = document.createElement('div');
newdiv.setAttribute('id', 'Div');
newdiv.onclick = function() { this.style.display = "none";};
with (newdiv.style) {
position="absolute";
top="140px";
left="100px";
border="1px solid black";
backgroundColor="#fff";
}
document.body.appendChild(newdiv);
newdiv.innerHTML = content;
newdiv.style.display = "";
}