Adding Select All for [code] BBcode

Adding Select All for [code] BBcode 1.1

Sem autorização para baixar
Compatibilidade com XF
  1. 2.2.x
Descrição curta
A simple but effective way to select all the content within a code bbcode in your forum.
A simple but effective way to select all the content within a code bbcode in your forum.

Please note: this doesn't add a "select all" button like you're probably used to see, but it adds a simple functionality to your mouse (or your thumbs) so that each time you click (or tap) inside a code box, it'll automatically select all the text into it.

How to:
Download the attached file, and replace it with your existing bb_code_tag_code file in your template(s).
Alternatively, follow these steps to manually modify it:
  • Find
HTML:
<code>{$content}</code>
  • Replace it with:
HTML:
<code onclick="getData(this)">{$content}</code>
  • And add the following javascript code at the very end of that file (so that you load it only when you effectively have a code bbcode in your page, to save bandwidth):
JavaScript:
<script>
function getData(element)
{
if (document.body.createTextRange) {
var range = document.body.createTextRange();
range.moveToElementText(element);
range.select();
} else if (window.getSelection) {
var selection = window.getSelection();
var range = document.createRange();
range.selectNodeContents(element);
selection.removeAllRanges();
selection.addRange(range);
}
}
</script>

gyS0higkSU6HTYEB43FHDA.webp
Autor
axtona
Visualizações
282
Tipo de extensão
txt
Tamanho do arquivo
939 bytes
Primeiro lançamento
Última atualização
Avaliações 0,00 estrelas 0 avaliações
Link was Broken? Please Enviar mensagem para a equipe NP que vamos ajudá-lo rapidamente!
Apoie o desenvolvedor Se você está satisfeito com o teste ou seu projeto gerou lucro, clique no botão “Mais informações” para apoiar o desenvolvedor comprando.

Mais recursos de axtona

Brazilian Language [PT-BR] A
Like the other available Brazilian Portuguese translation
Visualizações
21
Atualizado
SEO Audit A
SEO Audit 1.1.0
A comprehensive SEO auditing dashboard for XenForo administrators.
Visualizações
34
Atualizado
Galeria de mídia XenForo / XFMG A
Galeria XenForo é um addon oficial do XenForo que permite adicionar uma galeria ao seu XF2

Recursos similares

[AndyB] BBCode parser A
Removes undesired BBCode tags from messages.
Visualizações
532
Atualizado
[AndyB] Disallow bold bbcode A
Disallows bold bbcode tag in posts.
Visualizações
329
Atualizado
[AndyB] HTML to bbcode A
Updates post with HTML to BBCode.
Visualizações
208
Atualizado
Top