 ХРОНОС [11] (19.08.2026 08:47) 
Ошибка :
function tstlgnthm() {
if( window.opener && ( window.opener.textmsg != undefined || window.opener.parent.textmsg != undefined ) ) {
if( window.opener.textmsg != undefined ) {
$('#lgnthm').html( '<img onclick="window.opener.chat.addto(\'$login\',\'private\');" style="cursor:pointer" title="Написать персонажу" src="https://img.combats-club.com/i/lock3.gif" width="20" height="15">' + $('#lgnthm').html() );
}else{
$('#lgnthm').html( '<img onclick="window.opener.parent.chat.addto(\'$login\',\'private\');" style="cursor:pointer" title="Написать персонажу" src="https://img.combats-club.com/i/lock3.gif" width="20" height="15">' + $('#lgnthm').html() );
}
}
}
Фикс:
function tstlgnthm() {
if( window.opener && ( window.opener.textmsg != undefined || window.opener.parent.textmsg != undefined ) ) {
if( window.opener.textmsg != undefined ) {
$('#lgnthm').html(
'<a href="javascript:void(0)" onclick="window.opener.chat.addto(\'$login\',\'private\');" style="cursor:pointer" title="Написать персонажу">' +
'<img src="https://img.combats-club.com/i/lock.gif" width="20" height="15" border="0">' +
'</a>' + $('#lgnthm').html()
);
} else {
$('#lgnthm').html(
'<a href="javascript:void(0)" onclick="window.opener.parent.chat.addto(\'$login\',\'private\');" style="cursor:pointer" title="Написать персонажу">' +
'<img src="https://img.combats-club.com/i/lock.gif" width="20" height="15" border="0">' +
'</a>' + $('#lgnthm').html()
);
}
}
}
 ХРОНОС [11] (19.08.2026 09:26) 
Так, проблема не в этом извиняюсь, попозже напишу.  ХРОНОС [11] (21.08.2026 01:06) 
Правильный фикс чтобы работало в современных броузерах
function tstlgnthm() {
if( window.opener && ( window.opener.textmsg != undefined || window.opener.parent.textmsg != undefined ) ) {
if( window.opener.textmsg != undefined ) {
$('#lgnthm').html(
'<a href="javascript:void(0)" onclick="window.opener.chat.addto(\'$login\',\'private\');" style="cursor:pointer" title="src="https://img.combats-club.com/i/lock3.gif" width="20" height="15" border="0"></a>' + $('#lgnthm').html()
);
}else{
$('#lgnthm').html(
'<a href="javascript:void(0)" onclick="window.opener.parent.chat.addto(\'$login\',\'private\');" style="cursor:pointer" персонажу"><img src="https://img.combats-club.com/i/lock3.gif" width="20" height="15" border="0"></a>' + $('#lgnthm').html()
);
}
}
} |