I can tell my BB CODE USAGE AND HTML REPLACEMENT.
Last edited by Manish17xxx on February 7th 2015, 4:50 pm; edited 1 time in total
This is a Hitskin.com skin preview
Install the skin • Return to the skin page
BL@DE wrote:what do u want done to your site ? if u need some cool stuff on your site I can put it on for u.
[pokemon](Name of the pokemon)[/pokemon]
[img]https://i2.dstatic.com/images/pokemon/front/normal/(name of the pokemon).png[/img]
var pokemon = ['charizard','squirtle','snorlax'];
var pokeimage = ['imageforcharizard.gif','imageforsquirtle.gif','imageforsnorlax.gif'];
$('.postbody').each(function(){
var oldhtml = "";
oldhtml = $(this).html();
for(var i = 0;i<pokemon.length;i++){
oldhtml=oldhtml.replace('['+pokemon[i]+']','<img src="'+pokeimage[i]+'">');};
$(this).html(oldhtml);
});});
$(function(){
var pokemon = ['charizard','squirtle','snorlax'];
var pokeimage = ['imageforcharizard.gif','imageforsquirtle.gif','imageforsnorlax.gif'];
$('.postbody').each(function(){
var oldhtml = "";
oldhtml = $(this).html();
for(var i = 0;i<pokemon.length;i++){
oldhtml=oldhtml.replace('['+pokemon[i]+']','<img src="'+pokeimage[i]+'">');};
$(this).html(oldhtml);
});});
$(function(){
var pokemon = ['charizard','squirtle','snorlax'];
var pokeimage = ['imageforcharizard.gif','imageforsquirtle.gif','imageforsnorlax.gif'];
$('.postbody').each(function(){
var oldhtml = "";
oldhtml = $(this).html();
for(var i = 0;i<pokemon.length;i++){
oldhtml=oldhtml.replace('['+pokemon[i]+']',<img src="'+pokeimage[i]+'" title="'+pokemon[i]+'">');};
$(this).html(oldhtml);
});});