[jQuery] value attribute update problem

[jQuery] value attribute update problem


Hello
Little problem with value attribute I have some input element where I
try to update attributes.
Input element before jQuery code:
<input type="text" name="test" value="" testparam="" maxlength="10"
size="10" />
jQuery code:
$("input[name='test']").attr("value","test123");
$("input[name='test']").attr("size","15");
$("input[name='test']").attr("testparam","test123");
But it seems to me that jQuery update in DOM tree only testparam and
size attribute because if I look in Firebug then I see following row:
<input type="text" size="15" maxlength="10" testparam="test123"
value="" name="test"/>
Value is not updated can somebody tell why?
Indrek