I have an input box

and I have a span tag that contains some text: Waiting for user action..

What I am trying to do is, when the value of the inputbox changes I want it to add(prepend) the value in the span tag in a new line.

So if I keep adding lets say: 1, 2, 3, 4, 5, 6,7,something,or

then the span has

or
something
7
6
5
4
3
2
1
Waiting for user action..

Anyone please help?

Thanks Praney

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

I'm no expert but this may help a little.

<input type="text" id="myBox">
<span id="mySpan">Waiting for user action</span>

And a bit of jQuery to update the SPAN.

$("#myBox").keyup(function() {
    var myBoxContents = $("#myBox").val();
    var mySpanContents = $("#mySpan").text();
    $("#mySpan").html(myBoxContents+"<br>"+mySpanContents);
});
link|improve this answer
I'll just give it a try now thank you – praneybehl Feb 5 at 2:40
I've just realised this may not work as it should. This will produce a <BR> tag for every letter typed, meaning if you typed "something", it would return s<br>o<br>m<br>e<br>t..... I'll try and edit it for you so it gets the right result – ShadowStorm Feb 5 at 3:00
@praneybehl: Are you entering the commas in the text box like your question shows, 1,2,3,4,something... or will the words be split by whitespaces? – ShadowStorm Feb 5 at 3:03
Actually @praneybehl I have to disappear quickly. See TehBeardMan's answer, he has it spot on. – ShadowStorm Feb 5 at 3:52
sorry I lost power here, I am changing the value of the input box through an internal function. It would not be with commas, just individual strings. – praneybehl Feb 5 at 5:37
show 3 more comments
feedback

Something like

$('#textbox_id').keyup(function(e){
    $('#span_id').prepend(String.fromCharCode(e.keyCode) + '<br>');
});

should do the trick

link|improve this answer
feedback

Updated code to show output desired in update question

I would put the span in front of your text and simply update that span with what the user has input

html:

<input type="text" id="text_input"><br>
<span id="userInput"></span>Waiting for user action

jquery:

$("#text_input").keyup(function() {
    var data = $("#text_input").val();
    var myarray = data.split(",");
    var output = $("<span />");
    for (var i = 0; i < myarray.length; i++) {
        console.log(i);
        myarray[i] != "" ? output.prepend(myarray[i] + "<br>") : "" ;   
    }
    $("#userInput").html(output.html());
});

working example http://jsfiddle.net/64FVx/6/

link|improve this answer
ah the question requirements changed some while I was working on my answer. Give me a minute and I'll modify what I posted to make it output how you have it now. – TehBeardMan Feb 5 at 2:47
updated answer should do the trick – TehBeardMan Feb 5 at 3:05
thanks for the reply mate but this just changes the next up position span. – praneybehl Feb 5 at 6:38
feedback

Your Answer

 
or
required, but never shown

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