Hi and thanks for reading.

I am trying to permit users to paste text into a textarea field and then work with what they pasted.

The application is limited in scope but users will be pasting the contents of a csv file where the first column lines up with div Ids that I have set up.

For some reason, when I alert within this loop it alerts perfectly. The problem is when I try to prepend() the contents instead of alterting them, it just does nothing:

        $('#datainput').submit(function () {
        csvData = $("#csvData").val();
        csvData = csvData.split('\n');
        var iterationNum;
        var contentText;

        return function() {
            for (var i=0, lngth=csvData.length; i < lngth; i+=1) {
                csvData[i] = csvData[i].split(',');
                if (!!$('#' + csvData[i][0]).length){
                    iterationNum = '#' + csvData[i][0]
                    contentText = '<div class=\"percentageLabel\">' + csvData[i][1] + '</div>';
                    $(iterationNum).prepend(contentText); 
                }
            }   

        }();
    });

This on the other hand works (it works when I alert):

    $('#datainput').submit(function () {
        csvData = $("#csvData").val();
        csvData = csvData.split('\n');
        var iterationNum;
        var contentText;

        return function() {
            for (var i=0, lngth=csvData.length; i < lngth; i+=1) {
                csvData[i] = csvData[i].split(',');
                if (!!$('#' + csvData[i][0]).length){
                    iterationNum = '#' + csvData[i][0]
                    contentText = '<div class=\"percentageLabel\">' + csvData[i][1] + '</div>';
                    alert(iterationNum + contentText); 
                }
            }   

        }();
    }); 

I've even tested by replacing the iterationNum variable with an actual id like #MyID for example and it does not work within the loop. Using the each same expression outside of the loop the prepend works:

                        contentText = '<div class=\"percentageLabel\"></div>';
                    $(MyID).prepend(contentText); 

But if I use that code within the loop I get nothing.

Can you spot what I'm doing wrong here?

The first code snippet above is the one I want to work, the others are simply to show what else I've tried

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

It seems like in:

iterationNum = '#' + csvData[i][0]; /* Don't forget your ;'s! */
contentText = '<div class=\"percentageLabel\">' + csvData[i][1] + '</div>';
$(iterationNum).prepend(contentText);

$(iterationNum) may not be a valid selector. Change it to:

iterationNum = '#' + csvData[i][0]; /* Don't forget your ;'s! */
contentText = '<div class=\"percentageLabel\">' + csvData[i][1] + '</div>';
alert(( $(iterationNum)[0] != null  ));

And tell me whether it alerts true or false.

link|improve this answer
thank you for the reply! It alerts true but the prepend still doesn't do add anything – ndefinite Mar 20 '11 at 2:45
Seeing some HTML would really help, but change it to alert( $(iterationNum).prepend(contentText).html() ) and let me know if it alerts with your prepend-ed HTML. – coderkid Mar 20 '11 at 2:52
that's strange, it alert with the prepend-ed html but when I look at the actual html in the console the prepend-ed html is no longer there – ndefinite Mar 20 '11 at 3:02
I'm missing something... – coderkid Mar 20 '11 at 3:16
code <div id="pasteForm" class="popup_block"> <form id="datainput"> <fieldset><legend><span>Paste Data from Comma Separated CSV File</span></legend></fieldset> <ul> <li> <label for="pasteArea">Data Paste Area:</label> <textarea name="csvData" id="csvData" cols="50" rows="8"></textarea> </li> </ul> <input type="submit" class="button terminalButton" value="Submit Data" /> </form> </div> ` – ndefinite Mar 20 '11 at 3:35
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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