Toggle navigation
Bootsnipp
Bootstrap
For
CSS Frameworks
Bootstrap
Foundation
Semantic UI
Materialize
Pure
Bulma
References
CSS Reference
Tools
Community
Page Builder
Form Builder
Button Builder
Icon Search
Dan's Tools
Diff / Merge
Color Picker
Keyword Tool
Web Fonts
.htaccess Generator
Favicon Generator
Site Speed Test
Snippets
Featured
Tags
By Bootstrap Version
4.1.1
4.0.0
3.3.0
3.2.0
3.1.0
3.0.3
3.0.1
3.0.0
2.3.2
Register
Login
"fist table"
Bootstrap 4.1.1 Snippet by
lavan
4.1.1
table
Preview
HTML
View Full Screen
Fork
Fork this
16.7K
 
20 Fav
Post to Facebook
Tweet this
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html> <html> <head> <link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> </head> <body> <input type="text" id="one" placeholder="name"> <input type="number" id="two" placeholder="age"> <input type="text" id="three" placeholder="Address"> <button onclick="add()">Add</button> <button onclick="update()">Update</button> <table class="table table-bordered"> <thead> <th>Sl.No</th> <th>Name</th> <th>Age</th> <th>Address</th> <th>Action</th> </thead> <tbody id="data"> </tbody> </table> <script> var newone=[] var newtwo=[] var newthree=[] function add(){ var one=document.getElementById('one').value var two=document.getElementById('two').value var three=document.getElementById('three').value newone.push(one); newtwo.push(two); newthree.push(three); listshow(); } function listshow(){ var list="" for(var i=0;i<newone.length;i++){ list+= "<tr><td>"+(i+1)+"</td>"+"<td>"+newone[i]+"</td>"+"<td>"+newtwo[i]+"</td>"+"<td>"+newthree[i]+"</td>"+"<td>"+"<button onclick='edt("+i+")'>Edit</button><button onclick='del("+i+")'>Delete</button>"+"</td></tr>" } document.getElementById('data').innerHTML=list } var load="" function edt(edit){ load=edit document.getElementById('one').value=newone[edit] document.getElementById('two').value=newtwo[edit] document.getElementById('three').value=newthree[edit] } function update(){ newone[load]=document.getElementById('one').value newtwo[load]=document.getElementById('two').value newthree[load]=document.getElementById('three').value listshow(); } function del(dok){ newone.splice(dok,1) newtwo.splice(dok,1) newthree.splice(dok,1) listshow(); } </script> </body> </html>
Questions / Comments:
Post
Posting Guidelines
Formatting
- Now
×
Close
Donate
BTC: 12JxYMYi6Vt3mx3hcmP3B2oyFiCSF3FhYT
ETH: 0xCD715b2E3549c54A40e6ecAaFeB82138148a6c76