website added new table page

This commit is contained in:
2019-10-04 16:53:20 +02:00
parent 6b8cb9cc10
commit 032d3a9b9c
3 changed files with 217 additions and 63 deletions

View File

@ -17,4 +17,13 @@ $(document).ready(function() {
console.log(data);
},'json');
});
$('#addnewtable-btn').click(function() {
console.log("clicked");
$('.create-table').show();
});
$('.exit-icon').click(function() {
$('.create-table').hide();
});
});