The following script will help you to do the effect when you click the logout button .
Copy and paste the following script in to your head section and call the log_out() in button click.
function log_out()
{
bdy = document.getElementsByTagName('body');
bdy[0].style.filter = 'Alpha(opacity="30")';
bdy[0].style.MozOpacity = '0.3';
bdy[0].style.opacity = '0.3';
if (confirm('Are you sure? Do you want to logout?'))
{
return true;
}
else
{
bdy[0].style.filter = 'Alpha(opacity="100")';
bdy[0].style.MozOpacity = '1';
bdy[0].style.opacity = '1';
return false;
}
}
...S.VinothkumaR.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment