mi problema q el "cuerpo" esta en BBCODE y yo necesitaria transformarlo a HTML para poder verlo en la previsualizacion...
yo tengo una funcion q hace eso , pero esta en php , y no puedo hacerla andar
esta es la funcion javascript, al final se ve como mando a un DIV el "cuerpo" , pero el problema es q tengo q transformarlo antes
Código:
porfa si alguien me puede ayudar! <script type="text/javascript"> function show_preview(pregunta,cuerpo,tags,f){ if(cuerpo.length>63206){ alert('El post es demasiado largo. No debe exceder los 65000 caracteres.'); return false; } if(f.categoria.options.selectedIndex=='root' || f.categoria.options[f.categoria.options.selectedIndex].value=='root'){ Sexy.alert('<h1>Jolulu</h1><em>Donde todo es posible!</em><br/><p>Tenes que elegir una categoria</p>'); //alert('Tenes que elegir una categoria'); return false; } if(cuerpo.indexOf('imageshack.us')>0){ alert('No se permiten imagenes de IMAGESHACK.'); return false; } if(cuerpo == ''){ alert('El post esta vacio.'); return false; } if(pregunta == ''){ alert('Te olvidaste de poner Titulo'); return false; } if(tags == ''){ alert('No pusiste Tags'); return false; } var separar_tags = tags.split(","); if(separar_tags.length < 4){ alert('Minimo de Tags: 4. Ingresalos separados por coma.\nMientras mas pongas mas facil de encontrar sera tu post!'); return; } document.getElementById('previsualizar').innerHTML = cuerpo ; }