[Mr.P]
New member
Preview: N/A
Tác giả: slayer766
Đặt code tại Board Template > Below the board:
Tác giả: slayer766
Đặt code tại Board Template > Below the board:
Mã:
<script type="text/javascript">
/*
Blog Photo
*/
if(location.href.match(/blog\/main\/(\d+)\//i) || location.href.match(/blog\/entry\/(\d+)\//i)){
document.write("<iframe name='FindPhoto' id='FindPhoto' frameborder='0' src='"+main_url+"profile/"+RegExp.$1+"' height='0' width='0' onload='Get_Photo();'></iframe>")
}
function Get_Photo(){
var b = window.frames['FindPhoto'].document.getElementsByTagName('td');
var c = b.length;
while(c--){
if(b[c].className == "c_desc" && b[c].innerHTML.match(/Photo/i)){
image = b[c].nextSibling.nextSibling.innerHTML.split("\"")[1].split("\"")[0];
}
}
var a = document.getElementsByTagName('img');
var d = a.length;
while(d--){
if(a[d].getAttribute("alt")=="Member Avatar"){
a[d].src=image;
}
}
}
</script>