MyBB Community Forums

Full Version: Show alert box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to check if id is in list first (with php) if is, then put alertbox to onload javascript. Any advice would be appreciated
I don't fully understand what you are trying to do. Maybe give a little more detail.
Nvm. Already did it. Here's the code if someone needs:
$plugins->add_hook("pre_output_page","invitetochat_check");
..
function invitetochat_check($page){
$page=str_replace("</head>",'
<script type="text/javascript">
document.onLoad = alert("pancakes!");
</script>
</head>',$page);

return $page;
}