View Single Post
  #9 (permalink)  
Old 11-30-2007, 10:28 AM
Death Slaught's Avatar   
Death Slaught Death Slaught is offline
Newbie
 
Join Date: Nov 2007
Posts: 20
Rep Power: 4
Death Slaught is on a distinguished road
Default

Like I said store the value of Vbulletines output and store it in a variable.You include bold, and anchors like this:

response ="<b>";
response +="text to be bold";
response +="</b>;
response +="<a href='#'>"
response +="text to be linked";
response +="</a>";
document.form.name.value=response;

- Death
Reply With Quote