-
-
Save Rndwiga/49cc94b5c57bf4b8d00902d1658d11a8 to your computer and use it in GitHub Desktop.
Dynamic html table rows and column creation with jQuery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script> | |
<style> | |
table{ | |
width:500px; | |
height:500px; | |
} | |
table td{ | |
padding:10px; | |
margin:10px; | |
border:1px solid #ccc; | |
} | |
</style> | |
<script> | |
function createTable(){ | |
mytable = $('<table></table>').attr({ id: "basicTable" }); | |
var rows = new Number($("#rowcount").val()); | |
var cols = new Number($("#columncount").val()); | |
var tr = []; | |
for (var i = 0; i < rows; i++) { | |
var row = $('<tr></tr>').attr({ class: ["class1", "class2", "class3"].join(' ') }).appendTo(mytable); | |
for (var j = 0; j < cols; j++) { | |
$('<td></td>').text("text1").appendTo(row); | |
} | |
} | |
console.log("TTTTT:"+mytable.html()); | |
mytable.appendTo("#box"); | |
} | |
</script> | |
Row Count:<input type="text" id="rowcount" /> | |
Column Count:<input type="text" id="columncount" /> | |
<input type="button" onclick="createTable();" value="Create Table" /> | |
<div id="box"> | |
</div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment