Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to make a little JavaScript web app that I can use to make templates for webpages I am going to make.(To speed up designing and stuff.) But when doing this I want to make it update live while I am typing. I know it can be done with this, but I think it is a little messy. So i am trying to use the html5 output element instead, but i can't make it compatible with text strings instead of only numbers. The following only works with numbers:

<html>
    <body>
         <form oninput="x.value=parseInt(a.value)+parseInt(b.value)">
             <input type="range" name="a" value="50">
             <input type="number" name="b" value="50">
             <output name="x" for="a b"></output>
         </form>
    </body>
</html>

PS: i am a newbie in JS and it only needs to be compatible with FF.

share|improve this question
Ever thought of using Jquery, it would be a cinch to do? – bobthyasian Dec 16 '12 at 12:28
Try jsfiddle.net to test and explain – mplungjan Dec 16 '12 at 12:28
so You want to make tool like Adobe Dreamweaver on web page? Do I understand You well? – Wojciech Dłubacz Dec 16 '12 at 12:31
More info here useragentman.com/blog/2011/05/12/… – mplungjan Dec 16 '12 at 12:32
@WojciechDłubacz no, just simple stuff. – NatureShade Dec 16 '12 at 12:52

1 Answer

up vote 2 down vote accepted

Try this - DEMO

<form oninput="xx.value=aa.value+bb.value">
    <input type="text" name="aa" value="hello">
    <input type="text" name="bb" value="world">
    <output name="xx" for="aa bb"></output>
</form>
share|improve this answer

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.