I have a demo here
In the demo i have a table and a temp var to keep the delimited string, using js I am putting the delimited strings into appropriate places, but instead of an input box, i want some label i.e., without any boundary or box holding the value. Is there a way to do that, I am using jsp
for eg:
Configuration Name Raj
<td width="25%"><input type="text" id="cname" readonly="readonly" style="border:0"></input></td>OR
document.getElementById("cname").innerHTML = config_details[0];with either
<td width="25%"><label" id="cname"></label></td>or
<td width="25%" id="cname" ></td>PS: here are the new input types from HTML5