I have a textarea that receives a variable via php
$boring = str_ireplace($boringa, "\r\n", $boring);
That variable is then chaged via js
$(document).ready(function(){
$("a.clickable").click(function(event){
event.preventDefault();
$("textarea#messageforfriends").val($(this).html());
});
});
So the textarea receives the new variable fine in everything but IE (of course) the br tags are being taken out?