[Hỏi đáp] Thêm liên kết vào Avatar người gửi cuối

  Bài viết hay nhất1
Hỏi: Ai giúp mình fix cho click vào avatar thì nó ra trang wall
Code:
/* Avatar in index by giObanii punbb*/
$(document).ready(function () {
   $('.statused .tcr').each(function (e) {
      var l = this.getElementsByTagName('strong')[0].firstChild.href;
      $(this).prepend('<span class="avatar-index" id="avatar-index' + e + '"></span>');
      $('#avatar-index' + e).load(l + ' .module .main-content.clearfix.center:eq(0) img:eq(0)');
   });
});

Đáp: https://devs.forumvi.com/t249-hoi-dap-avatar-nguoi-gui-cuoi?showpost=p1890
  Bài viết hay nhất2
"Box" mà bạn nói là index_box hay topic_list_box vậy?
  Bài viết hay nhất3
index_box
  Bài viết hay nhất4
Vậy là đoạn js ở trên hiện avatar last poster nhưng ko dẫn đến trang wall đc hả?
  Bài viết hay nhất5
  Bài viết hay nhất6
Code:
$(document).ready(function () {
   $('.statused .tcr').each(function (e) {
      var l = this.getElementsByTagName('strong')[0].firstChild.href;
      $(this).prepend('<a class="avatar-index" id="avatar-index' + e + '" href="' + l + 'wall"></a>');
      $('#avatar-index' + e).load(l + ' .module .main-content.clearfix.center:eq(0) img:eq(0)');
   });
});
  Bài viết hay nhất7
You cannot reply to topics in this forum