I want to make a add on short url working in xenforo.

Status
This content is read-only, or is not open for further replies.

bsd

Guest
offline
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

Continue reading...
 
Liked by:
Status
This content is read-only, or is not open for further replies.
Top Bottom