Div type="hidden" + Not hided
type="hidden"
is used only for hidden input textbox.
If you want to hide you div use :
style="display:none"
Or with JQuery hide your div with hide().
try using style instead of type
<div style="display: none;">content</div>