Salve a tutti,
Vorrei richiamare la foto presente nel profilo di CB e farla visualizzare all'interno della SMO-AJAX-SHOUTBOX, ma non riesco a modificare il codice, avevo pensato anche magari di prendere una stringa di codice del modulo UTenti OnLine, qualcuno può darmi una mano ?
Se non sbaglio la parte di codice da modificare dovrebbe essere questa.....
Cmq allego la ChatBox se qualcuno può aiutarmi.
Grazie a tutti.
//inserts the new content into the page
function insertNewContent(liName,liText,lastResponse, liUrl, liId) {
response = document.getElementById("responseTime");
response.replaceChild(document.createTextNode(lastResponse), response.firstChild);
insertO = document.getElementById("outputList");
oLi = document.createElement('li');
oLi.setAttribute('id','comment-new'+liId);
oSpan = document.createElement('span');
oSpan.setAttribute('class','name');
oName = document.createTextNode(liName);
var sVet = liUrl.split("|");
oIMG = document.createElement('img');
oIMG.src = "images/comprofiler/tn" + sVet[1];
oSpan.appendChild(oIMG);
if (liUrl != "http://" && liUrl != '') {
oURL = document.createElement('a');
oURL.href = sVet[0].replace(/amp;/g, "");
oURL.appendChild(oName);
} else {
oURL = oName;
}
oSpan.appendChild(oURL);
oSpan.appendChild(document.createTextNode(' : '));
oLi.appendChild(oSpan);
oLi.innerHTML += jal_apply_filters(liText);
insertO.insertBefore(oLi, insertO.firstChild);
Fat.fade_element("comment-new"+liId, 30, <?php echo stripslashes(shoutbox_fade_length); ?>, "#<?php echo stripslashes(shoutbox_fade_from); ?>", "#<?php echo stripslashes(shoutbox_fade_to); ?>");
}
<?
if(shoutbox_use_sound && !shoutbox_use_send_sound)
$function = "sendChatText";
else
$function = "receiveChatText";
?>
[allegato eliminato da un amministratore]