Text value does not show within Tab [SOLVED]
I have a tab like this:
-
<script type="text/javascript">
$(function() {
$('#content > ul').tabs();
});
</script>
<div id="content">
<ul><a href="#num"><li><span>t1</span></a></li>
<li><span>t2</span></li>
</ul>
<div id="num">
<input type="text" name="name" value="test value">
</div>
<input type="text" name="name2" value="test value">
The value in the text box does not show within the tab (name), but it works just fine outside the tab div (name2). Any ideas how to solve this?