Hello,
I want to make a addon on short url working in xenforo. Please, help for this. I am using JS. I am writing a code for this.
<script>
// Function to generate a random alphanumeric string
function generateRandomString(length) {
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
let result = '';
for (let i = 0; i < length; i++) {
result += characters.charAt(Math.floor(Math.random() * characters.length))...
Read more
Читать далее...
I want to make a addon on short url working in xenforo. Please, help for this. I am using JS. I am writing a code for this.
<script>
// Function to generate a random alphanumeric string
function generateRandomString(length) {
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
let result = '';
for (let i = 0; i < length; i++) {
result += characters.charAt(Math.floor(Math.random() * characters.length))...
Read more
Читать далее...