[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

07/05/2008 at 02:54AM PDT, ID: 23540476
[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!

9.7

Dynamically add form fields

Asked by adamlund in JavaScript

Tags: Javascript

Hi All,

I have a script that allows a user to click a button which generates a new row/table of form fields.  This works fine only when I enter information in the first form field and click the add button it also copies the text in the form field as well.  I need the new form fields to be initially blank.  I have attached my code below.

Any help much appreciated.

Adam
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
// javascript:
 
function addTab(tabId,theBtn){
  var newTab = document.getElementById(tabId).cloneNode(true);
  theBtn.parentNode.insertBefore(newTab,theBtn);
}
 
// HTML:
 
<table cellpadding="1" cellspacing="0" border="0" width="700" id="Authors">
<tr>
<td>Surname:</td>
<td><input type="text" name="author[]" size="30"></td>
<td>Initials:</td>
<td><input type="text" name="author[]" size="1" maxlength="1"></td>
<td><input type="text" name="author[]" size="1" maxlength="1"></td>
<td><input type="text" name="author[]" size="1" maxlength="1"></td>
<td><input type="text" name="author[]" size="1" maxlength="1"></td>
<td><input type="text" name="author[]" size="1" maxlength="1"></td>
<td>&nbsp;</td>
<td><input type="checkbox" name="author[]" value="Jr">
Junior</td>
<td>&nbsp;</td>
</tr>
</table>
  <table width="700" border="0" cellpadding="0" cellspacing="0">
    <tr height="40">
      <td height="40"><div align="right">
        <input type="button" value="Add" onClick="addTab('Authors',this)">
      </div></td>
    </tr>
  </table>
 
Loading Advertisement...
 
[+][-]07/05/08 03:13 PM, ID: 21938567

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/05/08 04:56 PM, ID: 21938806

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/06/08 05:48 AM, ID: 21940084

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/07/08 07:41 PM, ID: 21950386

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: JavaScript
Tags: Javascript
Sign Up Now!
Solution Provided By: b0lsc0tt
Participating Experts: 2
Solution Grade: A
 
 
[+][-]07/08/08 08:23 AM, ID: 21954696

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20090824-EE-VQP-74 / EE_QW_2_20070628