andry.virvich
Joined: 24 Dec 2007
Posts: 13
|
Posted: Sun May 11, 2008 1:57 pm Post subject: |
|
|
You can use JS, like
| Code: |
function _modalDialog(text)
{
var _body = document.getElementsByTagName('body').item(0);
var _div = document.createElement('div');
_div.setAttribute('style', "background:gray;width:100%;height:100%;position:absolute;left:0px;top:0px;filter: alpha(opacity=20);opacity: 0.2;");
_body.appendChild(_div);
alert(text);
_body.removeChild(_div);
}
</script> |
|
|