Click here to Skip to main content
15,913,610 members
Home / Discussions / Web Development
   

Web Development

 
Questionjavascript calculation total not working Pin
esebagel25-Feb-10 10:54
esebagel25-Feb-10 10:54 
AnswerRe: javascript calculation total not working Pin
Jason Vetter25-Feb-10 11:24
Jason Vetter25-Feb-10 11:24 
GeneralRe: javascript calculation total not working Pin
esebagel25-Feb-10 13:11
esebagel25-Feb-10 13:11 
AnswerRe: javascript calculation total not working [modified] Pin
daveyerwin25-Feb-10 13:52
daveyerwin25-Feb-10 13:52 
GeneralRe: javascript calculation total not working Pin
esebagel25-Feb-10 15:45
esebagel25-Feb-10 15:45 
GeneralRe: javascript calculation total not working Pin
daveyerwin25-Feb-10 16:03
daveyerwin25-Feb-10 16:03 
GeneralRe: javascript calculation total not working Pin
daveyerwin25-Feb-10 20:22
daveyerwin25-Feb-10 20:22 
AnswerRe: javascript calculation total not working Pin
Boro_Bob1-Mar-10 23:08
Boro_Bob1-Mar-10 23:08 
GeneralRe: javascript calculation total not working Pin
esebagel2-Mar-10 2:17
esebagel2-Mar-10 2:17 
GeneralRe: javascript calculation total not working Pin
Boro_Bob2-Mar-10 5:52
Boro_Bob2-Mar-10 5:52 
QuestionLock up a browser on purpose. Pin
ItIsFinished25-Feb-10 8:20
ItIsFinished25-Feb-10 8:20 
QuestionLocalization Problem in ASP Pin
jyoti_aggarwal25-Feb-10 6:13
jyoti_aggarwal25-Feb-10 6:13 
AnswerRe: Localization Problem in ASP Pin
Daniel Vaughan25-Feb-10 7:29
Daniel Vaughan25-Feb-10 7:29 
QuestionLOGON_USER Server variable in IIS7 Pin
dreamaway82024-Feb-10 9:57
dreamaway82024-Feb-10 9:57 
QuestionLoosing session variables Pin
Hannes Smit23-Feb-10 23:15
Hannes Smit23-Feb-10 23:15 
QuestionGoogle ChromeFrame and .net web browser controller wrapping IE C#.net Pin
faheemnadeem22-Feb-10 22:16
faheemnadeem22-Feb-10 22:16 
QuestionBackground image problem in Office Outlook Pin
Majid Shahabfar22-Feb-10 19:32
Majid Shahabfar22-Feb-10 19:32 
Answerrepost Pin
Not Active22-Feb-10 20:59
mentorNot Active22-Feb-10 20:59 
QuestionHow to use Numbered Lists inside HTML tables Pin
Marc Hankin22-Feb-10 15:38
Marc Hankin22-Feb-10 15:38 
Difficulty using Ordered Lists in HTML tables

I can't figure out how to use Ordered Lists inside HTML tables.
The following is an Ordered List Outside of any HTML table:
1. Decimal type
2. Tea
3. Coca Cola
The Ordered List above is perfect, i.e., exactly what I want, when the list is outside of a table.

I can't figure out a way to keep the Ordered List numbering working (as shown above) when the Ordered List appears inside a table, as shown in the pdf file at this url:
"http://www.theadhdsolution.net/publicmisc/Difficulty%20using%20Ordered%20Lists%20in%20HTML%20tables.docx.pdf[^]"

I need the numbering to continue from the Left cell in the first row (in the table in the pdf) to the Left cell in the second row (in the pdf), to the left cell in the 3d row (in the pdf).

<html>
<head>
<title>My HTML application</title>
<HTA:APPLICATION
  APPLICATIONNAME="My HTML application"
  ID="MyHTMLapplication"
  VERSION="1.0"/>



</style>
</head>

<script language="VBScript">

Sub Window_OnLoad
  'This method will be called when the application loads
  'Add your code here
End Sub

</script>

<font size ="4"><b><u>My Outline-Numbering Wish List</b></u>
<br>

<ol>
<li>Decimal type</li>
<li>Tea</li>
<li>Coca Cola</li>
</ol>
<br>
<br>

<table cellspacing=1 cellpadding=3 bgcolor="black">
 <tr>
  <td bgcolor="white">
	<ol><li>Decimal type</li>
  </td>
  <td bgcolor="white">
  	 Right Column
  </td>
 </tr></ol>
 
 
  <td bgcolor="white">
	<ol><li>Tea<br><-- I wish that that the "1" could be replaced with a "2"</li>
  </td>
  <td bgcolor="white">
  	 Right Column
  </td>
 </tr></ol>
 
 
  <td bgcolor="white">
	<ol><li>Coca Cola<br><-- I wish that that the "1" could be replaced with a "3"</li>
  </td>
  <td bgcolor="white">
  	 Right Column
  </td>
 </tr></ol>
 
</table>
<br>
 

<table cellspacing=1 cellpadding=3 bgcolor="black">
 <tr>
  <td bgcolor="white">
  	<ol>
  	<li>First One</li>
  </td>
  <td bgcolor="white">
  	<li><-- I wish that that were a "2"</li>
  </td>
 </tr>
 

 <tr>
  <td bgcolor="white">
  	<li><-- I wish that that were a "3"</li>
  </td>
  <td bgcolor="white">
  	<li>Whoops. One too many</li>
  </td>
 </tr>
 
</table></ol>


</body>
</html>

AnswerRe: How to use Numbered Lists inside HTML tables Pin
Not Active22-Feb-10 20:56
mentorNot Active22-Feb-10 20:56 
GeneralI need the Numbered Lists to work across cells inside HTML tables Pin
Marc Hankin23-Feb-10 9:44
Marc Hankin23-Feb-10 9:44 
GeneralRe: I need the Numbered Lists to work across cells inside HTML tables Pin
Not Active23-Feb-10 9:54
mentorNot Active23-Feb-10 9:54 
GeneralRe: I need the Numbered Lists to work across cells inside HTML tables Pin
Marc Hankin23-Feb-10 14:11
Marc Hankin23-Feb-10 14:11 
GeneralRe: I need the Numbered Lists to work across cells inside HTML tables Pin
Not Active23-Feb-10 15:05
mentorNot Active23-Feb-10 15:05 
AnswerRe: How to use Numbered Lists inside HTML tables Pin
daveyerwin23-Feb-10 8:21
daveyerwin23-Feb-10 8:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.