
If you have a span set to display the value of an input, and that input is disabled, having a value of another attribute, the span will display the math, rather than the actual value. <input type="number" name="attr_test"/> <!--Normal input-->
<input type="number" name="attr_this_is_test" disabled="true" value="@{test}"/> <!--Disabled input with expected value-->
<span name="attr_this_is_test"></span> <!--Span with the value "@{test}"-->
<span name="attr_test"></span> <!--Span with expected value-->
Is there a workaround for this?