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.

Link to comment
Share on other sites

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?

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.