Jump to content

Hom to make one url to open together with another url


LexHammer

Recommended Posts

I have a chat, which i want to be opened, as soon as the users login to the site. As it is now, when the user login, he's redirected to home.php and have to press the CHAT button to enter the chat

The code for the chat button is

<a href="javascript:launchChat();" class='top_menu_item' style="text-decoration:none">CHAT</a>

 

Thank you.

That didnt worked. <body onload="chat();">, but that worked :) <body onload="javascript:launchChat();">. I also changed the page from user_home.php to login.php and the code is this:

// USER IS LOGGED IN, FORWARD TO USER HOME
if( $user->user_exists )
{
  header("Location: user_home.php");
  header("javascript:launchChat();");
  exit();
}

 

The problem is that every time the user_home page is opened, the chat reloads. How to make it load only for the first time the user log in and not every time when he opens user_home.php?

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.