Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im using the following jquery to dynamically add a form element in my rails view..The add button works but the remove button is not clickable..

$(document).ready(function() {
           $('#btnAdd').click(function() {
               var num     = $('.clonedInput').length;
               var newNum  = new Number(num + 1);

               var newElem = $('#input' + num).clone().attr('id', 'input' + newNum);

               newElem.children(':first').attr('id', 'name' + newNum).attr('name', 'name' + newNum);
               $('#input' + num).after(newElem);
               $('#btnDel').attr('disabled','');

               if (newNum == 5)
                   $('#btnAdd').attr('disabled','disabled');
           });

           $('#btnDel').click(function() {
               var num = $('.clonedInput').length;

               $('#input' + num).remove();
               $('#btnAdd').attr('disabled','');

               if (num-1 == 1)
                   $('#btnDel').attr('disabled','disabled');
           });

           $('#btnDel').attr('disabled','disabled');
       });

Here's the form code:

<form id="myForm">
    <div id="input1" style="margin-bottom:4px;" class="clonedInput">
        Name: <input type="text" name="name1" id="name1" />
    </div>

    <div>
        <input type="button" id="btnAdd" value="add another name" />
        <input type="button" id="btnDel" value="remove name" />
    </div>
</form>

THANKS!!!!!

share|improve this question

5 Answers

try this fiddle http://jsfiddle.net/269HU/

use $("#id").attr('disabled',false);   --> for enable

and

use $("#id").attr('disabled',true);   --> for disable
share|improve this answer

Try removing

.click(function() {

with this

.on('click',function() {
share|improve this answer
thanks, but still not working.. – js111 May 25 '12 at 6:40
use class instead of id . and use $(this) inside function to indicate clicked element. – Priyank Patel May 25 '12 at 6:42

$('#btnDel').attr('disabled', ''); doesn't actually remove the disabled property - it just sets it to the empty string, and it's still active when blank! Use this instead:

           $('#btnDel').removeAttr('disabled');

jsFiddle: http://jsfiddle.net/LzdHg/

share|improve this answer

Answer is found and explained here... http://digitalmeaning.co/thoughts/using-jquery-to-duplicate-a-section-of-a-form-maintaining-accessibility/

“For later version of jQuery, change the button code to either

$(‘#btnDelW1′).attr(‘disabled’,true);

or

$(‘#btnDelW1′).attr(‘disabled’,false);

share|improve this answer

Try live method of jQuery

$('#btnDel').live('click', function() {
               var num = $('.clonedInput').length;

               $('#input' + num).remove();
               $('#btnAdd').attr('disabled','');

               if (num-1 == 1)
                   $('#btnDel').attr('disabled','disabled');
           });

http://api.jquery.com/live/

share|improve this answer
-1 because .live in deprecated in new jquery instead use .delegate or .on method. – Priyank Patel May 25 '12 at 6:38
see the attached link of yours. it is in depreciated category. – Priyank Patel May 25 '12 at 6:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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