I convert user input urls to bbcode and append it to the textarea, but after you delete one of the lines I appended it won't append more(but you could see the newly appended values in the firebug,really strange).Here's my code:
$(function(){
$(".addUrl").click(function(){
$("#addUrl").slideDown();
})
$('#su').click(function(){
if($("#u").val().length>3)
addUrl($("#u").val());
$("#u").val("");
})
$("input[value=\"x\"]").click(function(){$("#addUrl").fadeOut();})
})
function addUrl(e)
{
patt="http[s]*:\/\/";
if(e.match(patt))
u=e;
else
u="http://"+e;
$("textarea[name=\"content\"]").append("\n\r[url]"+u+"[/url]\n\r");
}
And here's the jsfiddle:http://jsfiddle.net/FpSsc/