Show Hide Table with Checkbox using Jquery
Now,we will create simply table that can show/hide by giving checklist on the checkbox. Yeah it’s simple script and first you can download jquery file at www.jquery.com here this code 1: <script type="text/javascript" src="jquery/jquery.js"></script> 2: <style type="text/css"> 3: #showtable {visibility:hidden} 4: </style> 5: <script type="text/javascript"> 6: function showhide(chkbox, showtable) { 7: var a = (chkbox.checked) [...]