Inside the browser I see a value in the #worktime input element. e.g. 7,6
This value gets set before by jQuery $("#worktime").val("7,6");
But when I look with firebug into this line of code I see no value:
<input id="worktime" value="" readonly="">
But under the DOM section in firebug I see for this element a value of "7,6".
If I want to print the #worktime value with alert no value shows up.
valueof the DOM element, it won't be reflected in the attributevaluein the html.valueof the DOM element changes?