Would you like to react to this message? Create an account in a few clicks or log in to continue.

You are not connected. Please login or register

First forum

2 posters

Go down  Message [Page 1 of 1]

1First forum Empty First forum 09.07.23 9:35

The Raven

The Raven
Administrator

What was your first Forumotion forum about?
I am not sure about me but I guess it was probably something about helping other users setup their own forum even though I had little knowledge about it. Very Happy

https://goldenage.forumotion.me/

2First forum Empty Re: First forum 11.07.23 9:57

Tester

Tester

Jus ttesting

3First forum Empty Re: First forum 30.10.24 11:34

The Raven

The Raven
Administrator

Code:
function selectCode(e) {
    var doc = document,
        text = $(e).closest("dl").find(".cont_code,code").get(0),
        range, selection;
    if (doc.body.createTextRange) {
        range = document.body.createTextRange();
        range.moveToElementText(text);
        range.select();
    } else if (window.getSelection) {
        selection = window.getSelection();
        range = document.createRange();
        range.selectNodeContents(text);
        selection.removeAllRanges();
        selection.addRange(range);
    }
};
$(function() {
    $("dl.codebox:not(.spoiler,.hidecode)  > dd.code, dl.codebox:not(.spoiler,.hidecode)  > dd > code").closest("dl").find('dt').append('<span onClick="selectCode(this)" class="selectCode">Select Content</span>')
});

https://goldenage.forumotion.me/

Sponsored content



Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum