the default value of intexed if set to ...........................
Answers
Answer:
A default value that will be added automatically to any documents that does not have a value in this feild when it is indexed. If this property is not specified, there is no default.
Explanation:
my requirement is to save the entire "html" inside a div, but when i load an "html" with text fields to a div and then editing the value of the text box, the newly set value doesn't reflect in the core "html". I tried to inspect the value with fire bug and it remains the same or no value at all.With "jquery" i tried to set attribute but no attribute name value is created. how can i set the value of text fields and then get that "html" with the newly set value.
here is my html
<div class="sub_input_box"> <input type="text" / class="boreder_line"> <input type="text" id="txt" value=""/> <input type="hidden" id="hid" /> <div class="clear"></div> </div>
and the jquery i used to set attribute
$("#txt").attr("value", "some value");