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.

My intention is for a new <input> fields to be created every time there is only one blank one left - so when the top one loses focus. This happens, but only once (so only three <input> fields can ever be made.

My working example is at http://sas98.user.srcf.net/guestlist/ under number 4.

The code is:

<div id="names">
<p><input class="input" type="text" name="name1" /></p>
<p><input class="input" type="text" name="name2" /></p>
</div>

<script type="text/javascript">
$(document).ready(function() {
var name = $("<p><input class='input' type='text' /></p>");
    $('.input').blur(function() {
        if($(this).val().length>0) {
            $('#names').append(name.clone());
        }
    });
});
</script>

EDIT:

            $('#names').append(name);

Changed to

        $('#names').append(name.clone());

Makes it work a couple more times before getting stuck. It seems temperamental - I can't see a pattern to it.

share|improve this question

3 Answers

up vote 2 down vote accepted

The problem is the event handler is not updated. for Jquery < 1.7 use $.live() to bind blur, on newer versions use $.on()

share|improve this answer
where would I add $.on() here? – Sebastian Apr 6 '12 at 22:06
jsfiddle.net/YFJA6/1 – mightyuhu Apr 6 '12 at 22:23

This works like you want I think: http://jsfiddle.net/YFJA6/

$('#names').on({
blur: function() {
    if($(this).val().length>0) {
        $('#names').append('<p><input class="input" type="text" /></p>');
    }
}
}, 'input');
share|improve this answer
Yea, thats another logic issue - could loop through all inputs - checking val() and make sure you don't have any blank ones - to avoid excessive blank inputs added. I just left the logic they started with though. – mikevoermans Apr 6 '12 at 22:19
That'd be perfect, how is that done? – Sebastian Apr 6 '12 at 22:21
1  
its not perfect since you can add input to the first two fields and switch between them and it keeps adding new fields. see jsfiddle.net/YFJA6/1 for fix – mightyuhu Apr 6 '12 at 22:24

This is because you add the .blur() handler only once (before the new inputs are created), so the newest input needs to be assigned a handler for the blur event as well.

For interest sake, try:

<div id="names">
<p><input class="input" type="text" name="name1" /></p>
<p><input class="input" type="text" name="name2" /></p>
</div>

<script type="text/javascript">
$(document).ready(function() {    
    $('.input').blur(addBlur());
});
function addBlur() {
        var name = $("<p><input class='input' type='text' /></p>");
        if($(this).val().length>0) {
            var newBox = name.clone();
            newBox.blur(addBlur());
            $('#names').append(name.clone());
        }
    }
</script>
share|improve this answer
thanks for your reply. where would the second handler go? – Sebastian Apr 6 '12 at 21:59
see updated answer – hofnarwillie Apr 6 '12 at 22:00
When I tried it, the script didn't work I'm afraid – Sebastian Apr 6 '12 at 22:02
Sorry, I put the 'var name=...' in the wrong function. try again please – hofnarwillie Apr 6 '12 at 22:13

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.