Advertisement

01.27.2004 at 01:42PM PST, ID: 20864812
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

Javascript InnerHTML

Tags: innerhtml, javascript
Hi I am designing a DHTML menu. When sombody selects an item in the menu I want another table to drop down under the menu. I use a javascript function for this which inserts the html table into to required place. The problem is it wont insert it as a table just the text. I dont have much expierence in javascript and was wondering could sombody take a quick look Here is a cut down example.

<HTML>
<HEAD>
<script language="javascript">
var last;
function dropMenu(elementID)
{
if(last)
{
var subMenu = document.getElementById(last);
subMenu.innerHTML = ""
}

var subMenu = document.getElementById(elementID);

subMenu.innerHTML = "<TABLE cellspacing=0 cellpadding=0 width=85 height=13 border=1>"
subMenu.innerHTML += "<TR>"
subMenu.innerHTML += "<TD width=85 height=13><span class=subHeader>    New Releases </span>"
subMenu.innerHTML += "</TD>"
subMenu.innerHTML += "</TR>"
subMenu.innerHTML += "<TR>"
subMenu.innerHTML += "<TD width=85 height=13><span class=subHeader>    All In Stock </span>"
subMenu.innerHTML += "</TD>"
subMenu.innerHTML += "</TR>"
subMenu.innerHTML += "<TR>"
subMenu.innerHTML += "<TD width=85 height=13><span class=subHeader>    Back Catelogue </span>"
subMenu.innerHTML += "</TD>"
subMenu.innerHTML += "</TR>"
subMenu.innerHTML += "</TABLE>"
last = elementID
}
</script>
</HEAD>
<TABLE cellspacing=0 cellpadding=0 width=134 height=20>
<TR>
<TD width=134 height=20><span class=sectionHeader>    Trance </span>
</TD>
</TR>
<TR>
<TD align=right>
<TABLE cellspacing=0 cellpadding=0 width=110 height=15 border=1>
<A href="javascript:dropMenu('TranceHard')"><TD width=110 height=15 id="TranceHardBtn"><span class=subHeader>    Hard </span>
</TD></A>
</TR>
<TR><TD align="right" id="TranceHard" height="0">
</TD></TR>
<TR>
<A href="javascript:dropMenu('TranceTech')"><TD width=110 height=15 id="TranceTechBtn"><span class=subHeader>    Tech Trance </span>
</TD></A>
</TR>
<TR><TD align="right" id="TranceTech" height="0">
</TD></TR>
<TR>
<A href="javascript:dropMenu('TranceProgressive')"><TD width=110 height=15 id="TranceProgressiveBtn"><span class=subHeader>    Progressive </span>
</TD></A>
</TR>
<TR><TD align="right" id="TranceProgressive" height="0">
</TD></TR>
<TR>
<A href="javascript:dropMenu('TranceDeep')"><TD width=110 height=15 id="TranceDeepBtn"><span class=subHeader>    Deep </span>
</TD></A>
</TR>
<TR><TD align="right" id="TranceDeep">
</TD></TR>
<TD width=110 height=15>
</TD>
</TR>
</TABLE>
</TD></TR>
</TABLE>
</TD></TR>
</TABLE></HTML>


Thanks
John.
Start your free trial to view this solution
Question Stats
Zone: Web Development
Question Asked By: clearz
Solution Provided By: jaysolomon
Participating Experts: 2
Solution Grade: B
Views: 773
Translate:
Loading Advertisement...
01.27.2004 at 01:45PM PST, ID: 10213506

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
01.27.2004 at 01:46PM PST, ID: 10213514

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
01.27.2004 at 02:05PM PST, ID: 10213683

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
06.25.2005 at 07:18PM PDT, ID: 14302435

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080236-EE-VQP-29