Hello. I want to add mentions for the usernames in my forum. Someone gave me this code to add to javascript but doesn't seem to work! Can someone help me?
- Code:
$(function () {
  var a = $('.name').get();
  for (i = 0; i < a.length; i++) {
    $(a[i].getElementsByTagName('a')[1]).dblclick(function (e) {
      e.preventDefault();
      document.getElementById('text_editor_textarea').value += '@[url=http://' + window.location.host + '/profile?mode=viewprofile&u=' + $(this).text() + ']' + $(this).text() + '[/url]';
    });
  }
});
Last edited by Marios94 on Fri 11 Apr - 8:02; edited 1 time in total