•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the JavaScript / DHTML / AJAX section within the Web Development category of DaniWeb, a massive community of 401,523 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,359 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our JavaScript / DHTML / AJAX advertiser: Lunarpages Web Hosting
Views: 1844 | Replies: 2
![]() |
•
•
Join Date: Jan 2008
Location: Bangalore, India
Posts: 336
Reputation:
Rep Power: 0
Solved Threads: 32
javaScript is not from .net.
do you want to create 100 table ???
-just loop through 1 to 100
- select parent element for tables
- create table element using dom api documet.createElement("table");
-add table element using dom api appendChild()
i hope this will help
•
•
•
•
creating tables 1 to 100 using javascript
do you want to create 100 table ???
-just loop through 1 to 100
- select parent element for tables
- create table element using dom api documet.createElement("table");
-add table element using dom api appendChild()
i hope this will help
A computer lets you make more mistakes faster than any invention in human history - with the possible exceptions of handguns and tequila.
~Mitch Ratcliffe
~Mitch Ratcliffe
Hi there,
well you may uses this script to create the tables of 1 to 100,
I am not sure if you are talking about HTML Tables
) if yes then let me know maybe I may help in that as well
hope this may help you
Rahul Dev
well you may uses this script to create the tables of 1 to 100,
<html>
<head>
<title>Tables 1 To 100 </title>
<script language="javascript" type="text/javascript">
for (i=1;i<=100; i++)
{
document.write("Table of: "+ i+"<br />");
for(j=1; j<=10; j++)
{
document.write(i + "X" + j +" = " + (i*j) + "<br s/>");
}
document.write("<hr />");
}
</script>
</head>
<body>
</body>
</html>I am not sure if you are talking about HTML Tables
) if yes then let me know maybe I may help in that as wellhope this may help you
Rahul Dev
Freelance Web Designer & Developer
Http//www.Katarey.com
Http//www.Katarey.com
![]() |
•
•
•
•
•
•
•
•
DaniWeb JavaScript / DHTML / AJAX Marketplace
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
- Open In New Window Php (PHP)
- Adding a deleting rows (JSP)
- I NEED HELP PLEASE:Warning: mysql_num_rows(): (PHP)
- I NEED HELP PLEASE:Warning: mysql_num_rows(): (MySQL)
- Warning: mysql_num_rows(): (PHP)
- Frame detection possible? (HTML and CSS)
- document.write to new window and into a 3 column table! Help Please! (JavaScript / DHTML / AJAX)
Other Threads in the JavaScript / DHTML / AJAX Forum
- Previous Thread: Outline JS error from Frontpage
- Next Thread: Need help with code - grabbing width and height of an element.


Linear Mode