pandorafms/pandora_console/general/noaccess.php

19 lines
352 B
PHP
Raw Normal View History

2016-10-31 16:19:46 +01:00
<script>
2016-10-31 16:19:46 +01:00
$('body').append( "<div id='opacidad' style='position:fixed;background:black;opacity:0.6;z-index:1'></div>" );
jQuery.get ("ajax.php",
{
"page": "general/alert_enterprise",
"message":"noaccess"},
function (data, status) {
$("#alert_messages").hide ()
.empty ()
.append (data)
.show ();
},
"html"
);
</script>