HTML and CSS Reference
In-Depth Information
<a href="#" id="clearTask"> Clear task</a>
</nav>
</form>
</section>
<section>
<table id="tblTasks">
<colgroup>
<col width="40%">
<col width="15%">
<col width="15%">
<col width="30%">
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Due</th>
<th>Category</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<nav>
<a href="#" id="btnAddTask">Add task</a>
</nav>
</section>
</main>
<footer>You have 3 tasks</footer>
</body>
<script>
$(document).ready(function() {
$('[required="required"]').prev('label').append( '<span>*</span>').children( 'span').addClass('required');
Search WWH ::




Custom Search