/    Sign up×
Community /Pin to ProfileBookmark

I need to create a for loop with a random number from 1-10 that will create hello in a table with cells on whatever number the script generates.

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd“>
<html xmlns=”http://www.w3.org/1999/xhtml“>
<head>
<title>Untitled</title>
</head>

<body>
<script type=”text/javascript”>
var n = Math.round(1 + Math.random()* 10);

for (var i = 1; i <= m; i++)
{
txt +=<table>Hello</table>+'<br>’;
}
document.write(txt)
</script>

</body>
</html>

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@FangMay 08.2006 — A table must have child elements: <tbody>, <tr> and <td>

The <table>, <tbody> and <tr> are outside the loop

Only <td> is in the loop.

http://www.w3schools.com/html/html_tables.asp
Copy linkTweet thisAlerts:
@CharlesMay 08.2006 — Also, document.write isn't supposedto work with XHTML. Switch to HTML or use W3C DOM methods.
×

Success!

Help @Digic25 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...