By assigning a var name to the element, you can use that to control the element:
Code:
var textBox = $('<textarea/>');
$('body').append(textBox);
$(textBox).val('add a new value');
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|