- Desde
- 12 Jun 2008
- Mensajes
- 29
Por favor, ten en cuenta 📝 que si deseas hacer un trato 🤝 con este usuario, está baneado 🔒.
Buen dia a todos, tengo el siguiente problema actualmente estoy creando un plugin, entonces en varios textareas coloco cierta informacion, entonces el problema es que cuando quiero que toda esa informacion pase al textarea de vbulletin(editor de vbulletin) no lo pasa no funciona, el cual tiene el nombre de vB_edito_001_textarea, no se como arreglarlo, pongo un poco de mi codigo jeje xD.
Campo donde ingreso info:
Boton, que llama la funcion:
Scrip que hace la funcion de generar y pasarlo al textarea de vbulletin:
P.D: En google chrome si funciona, pero en los demas navegadores no funciona.
Campo donde ingreso info:
HTML:
<div><strong>Titulo:</strong>
<div><input id="title" value="" maxlength="60" size="60" type="text" /></div>
HTML:
<div>
<a class='button' onclick="postwg();return false;" id="cont" style="display: none; cursor:pointer; cursor:hand" href="#"><span>Generar Codigo!</span></a>
</div>
Scrip que hace la funcion de generar y pasarlo al textarea de vbulletin:
HTML:
function postwg()
{
var txt = "";
document.getElementById("vB_Editor_001_textarea").value = "";
if (document.getElementById("title").value != ""){
txt += "[SIZE=\"5\"][b][u][color=red]";
txt += document.getElementById("title").value;
txt += "[/color\][/u][/b][/SIZE]\n\n";
document.getElementById("vB_Editor_001_textarea").value += txt;}