I would like to put a <div id="all_content"> element into <sector id="all_field"> element with Javascript
<section id="all_field"></section>
<div id="all_content">
<h1>--- Meeting Room Booking ---</h1>
<fieldset class="box"><legend class="booking_meetRom">Approved Status of Meeting</legend>
<div><a>More Detail</a> </div>
</fieldset>
<fieldset class="box"><legend class="booking_meetRom">123</legend>
<div>123</div>
</fieldset>
</div>
Here is JSFIDDLE: http://jsfiddle.net/Y6MpQ/
It should be like this:
<section id="all_field">
<div id="all_content">
<h1>--- Meeting Room Booking ---</h1>
<fieldset class="box">
<legend class="booking_meetRom">Approved Status of Meeting</legend>
<div><a>More Detail</a> </div>
</fieldset>
<fieldset class="box">
<legend class="booking_meetRom">123</legend>
<div>123</div>
</fieldset>
</div>
</section>
JSFIDDLE should be: http://jsfiddle.net/Y6MpQ/1/