Repository URL to install this package:
|
Version:
2.2.7 ▾
|
$(document).ready(function() {
$('.toggleInputTable').click(function(e) {
$('.inputTable').toggle('slow');
e.preventDefault();
});
$('.toggleControlTable').click(function(e) {
$('.controlTable').toggle('slow');
e.preventDefault();
});
})