Forumotion has a limit of kb that the emoticon have, that make impossible many 50 x 50 gifs to be put.
A person give me a ccode, but it replace the text for a image by the img alt, and it replaces every image on forum with the same value on alt Showbox. So, i want to do it by text (And turn possible add more emoticons)
Here's the code:
A person give me a ccode, but it replace the text for a image by the img alt, and it replaces every image on forum with the same value on alt Showbox. So, i want to do it by text (And turn possible add more emoticons)
Here's the code:
- Code:
var Smileys;
Smileys = {
'Xuxa mandando beijo' : 'https://2img.net/i/fa/pbucket.gif',
'Nazaré Tedesco' : 'https://2img.net/i/fa/pbucket.gif',
'Tiffany Pollard' : 'https://2img.net/i/fa/pbucket.gif',
'Tiffany' : 'https://2img.net/i/fa/pbucket.gif',
'Tiff' : 'https://2img.net/i/fa/pbucket.gif',
'Ines Brasil' : 'https://2img.net/i/fa/pbucket.gif',
'Xuxa' : 'https://2img.net/i/fa/pbucket.gif',
'Eita' : 'https://2img.net/i/fa/pbucket.gif',
'Sofrendo' : 'https://2img.net/i/fa/pbucket.gif',
'Lara com Z' : 'https://2img.net/i/fa/pbucket.gif',
'666' : 'https://2img.net/i/fa/pbucket.gif',
'Xuxa chorando' : 'https://2img.net/i/fa/pbucket.gif',
'Puta que pariu' : 'https://2img.net/i/fa/pbucket.gif',
'Gretchen' : 'https://2img.net/i/fa/pbucket.gif',
'eliana nojo' : 'https://2img.net/i/fa/pbucket.gif',
'Sônia Abrão' : 'https://2img.net/i/fa/pbucket.gif',
'Mas não se irrite' : 'https://2img.net/i/fa/pbucket.gif',
'Falta de sacanagem' : 'https://2img.net/i/fa/pbucket.gif',
};
$(function() {
$.each(Smileys, function(key, value) {
$('img[alt="' + key + '"]').attr('src', value);
});
});
Last edited by Shirley29385 on October 2nd 2019, 1:20 pm; edited 1 time in total