26

Re: Would like "THIS" for my forum

OK.
STUPID, stupid me.
It's not supposed to show anything because it shows all on MouseOver.
Irritating text, I admit sad

Anyway, if you want something to happen I suggest you change line 204 (or around);

$username .= ' <a href="#" onClick="document.location.href=\'profile.php?id='.$cur_post['poster_id'].'\'" onMouseover="dropdownmenu(this, event, \'anylinkmenu'.$tpct.'\')">CLICKME</a>';

to

$username .= ' <a href="#" onClick="return clickreturnvalue()'" onMouseover="dropdownmenu(this, event, \'anylinkmenu'.$tpct.'\')">CLICKME</a>';

then you will be taken to that user's profile page.

This should also solve the "Any layer appears" problem.

The German PunBB Site:
PunBB-forum.de

27

Re: Would like "THIS" for my forum

still there is problem ...
unexpected T_STRING
error is on this:
$username .= ' <a href="#" onClick="return clickreturnvalue()'" onMouseover="dropdownmenu(this, event, \'anylinkmenu'.$tpct.'\')">CLICKME</a>';

is this valid:

' <a href="#" onClick="return clickreturnvalue()'"
it's just me...

28

Re: Would like "THIS" for my forum

This is not my day. Sorry.

The real way is:

Change line 204 (or around);

$username .= ' <a href="#" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, \'anylinkmenu'.$tpct.'\')">CLICKME</a>';

to

$username .= ' <a href="#" onClick="document.location.href=\'profile.php?id='.$cur_post['poster_id'].'\'" onMouseover="dropdownmenu(this, event, \'anylinkmenu'.$tpct.'\')">CLICKME</a>';
The German PunBB Site:
PunBB-forum.de

29

Re: Would like "THIS" for my forum

this is it?
http://www.maglaj.net/forum/viewtopic.php?id=131
Vidi profil -> See profile
...
It's work but i didn't see any function of java script (anylink.js) ...

it's just me...