vote up 0 vote down star

Hello,

please help with this criteria ?

Users can be able to add as many Names as they can, ADD NAME link serves the purpose for this

How can i handle this specification ? Please check the spec below:

alt text

Thanq

flag

50% accept rate

2 Answers

vote up 1 vote down check

Hope this goes well.

<html>
<script type="text/javascript">
    function addfieldset() {
    	var namefieldset = document.getElementById("name").cloneNode(true);
    	document.getElementById("names").appendChild( namefieldset );
    }
    function deletefieldset( e ) {
    	var namefieldset = e.parentNode;
    	namefieldset.parentNode.removeChild( namefieldset );
    }
</script>
<body>
    <div id="names"><div id="name">Name: <input name="namefield" type="text"/><a href="#" onclick="deletefieldset( this )">delete</a></div></div>
    <input id="addnamebtn" type="button" value="Add Name" onclick="addfieldset()"/>
</body>
</html>

I remembered an excellent post from "quirkmodes" briefly explained this. I still hold in my bookmarks. Here it is.

Good Day!

link|flag
Thanx Ramiz, completed the work according to the spec and easy too quirksmode.org helped me a lot to solve this spec...thanx to all who gave a helpfull support – luvboy Oct 20 at 18:32
I'm glad you found it useful. – Ramiz Uddin Oct 21 at 3:29
vote up 2 vote down
var input = $('#input').clone().attr('name', 'name2').attr('id', 'input-2').appendTo('body')

You can go further and clone the entire row/div with $(el).clone() and then do .find('input') and modify the name and id attribute values so they're unique and don't conflict. You can pass true to clone if you want to copy the event handlers.

Incomplete non-jQuery "solution" since I don't know exactly at which point the OP is in since he claims he can clone nodes now..

  <div id="wrap">
    <div class="foo">
      <label for="first_name">name:</label><input type="text" name="first_name[]  " id="first_name"><a href="#">delete</a>
    </div>
    <a href="#" id="add">add name</a>
  </div>
  <script>
  (function() {
    var add = document.getElementById('add'), counter = 0;
    add.onclick = function() {
      var rows = document.getElementsByTagName('div'), last = false;
      if ( rows.length ) {
        for ( var i = rows.length; i--; ) {
            if ( last ) { break; }
            if ( rows[i].className.length && ( ' ' + rows[i].className + ' ' ).indexOf(' foo ') != -1 ) {
              last = rows[i];
            }
        }
      }
      if ( last ) {
        var newNode = last.cloneNode(true), wrap = document.getElementById('wrap'), input = newNode.getElementsByTagName('input');
        input.id = input.id + (counter++);
        wrap.appendChild( newNode );
      }
    }
  })();
link|flag
it's not a complete solution, but a good start. it looks like you'll want to tie that to the "click" event of the "Add name" text... and you'll have to use some sort of counting variable for the name attribute... better would be just to have it as an array "name[]" and not bother modifying it at all. – Mark Oct 20 at 6:06
I never intended to post a full solution without seeing his specific markup, and I'm perfectly aware of what's possible. – meder Oct 20 at 6:07
Perhaps a little remaker: the solution by Meder uses jQuery, i don't see that mentioned anywhere. – ChrisRamakers Oct 20 at 6:09
Doh .. Remaker?? Remark ofcourse ... :) – ChrisRamakers Oct 20 at 6:10
Wow, bad reading on my part. – meder Oct 20 at 6:10
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.