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

I have an input field, but I don't want the user to be able to type in it because it is part of a calculator, and I want them to select buttons instead. Is this possible? My code is below.

<html>
    <head>
        <title></title>
        <script src="raphael.js"></script>
        <script src="jquery.js"></script>
        <style type="text/css">
            #calc {
                border: 3px solid #a1a1a1;

                background: #dddddd;
                width: 250px;
                height: 300px;
                border-radius: 25px;
                -moz-border-radius: 25px; /* Firefox 3.6 and earlier */

                -moz-box-shadow: 10px 10px 5px #888888; /* Firefox 3.6 and earlier */
                box-shadow: 5px 5px 10px #888888;
            }

            .input {
                margin-top: -400px;
                border: 1px solid gray;
            }
        </style>
    </head>


    <body>
        <!--<div id="calc" />-->
        <div id="draw-here-raphael" style="height: 500px; width: 500px;">
        </div>


        <script type="text/javascript">
            //all your javascript goes here
            var r = new Raphael("draw-here-raphael"),
            // Store where the box is
                    position = 'left',
            // Make our pink rectangle
                    rect = r.rect(20, 20, 300, 300, 10).attr({"fill": "#fbb"});
            // Note JQuery is adding the mouseover. SVG == html nodes
            $(rect.node).dblclick(function () {
                setInterval(function () {
                    rect.rotate(10);
                }, 10);
            });
        </script>
        <div style="margin-top: -50px; padding-left: 40px; z-index: 99; position: relative;">
            <form>
                <input class="input" value="0" style="text-align:right; height:30px; width:250px;" type="text">
            </form>
        </div>
    </body>
</html>
share|improve this question
it's not a bad question. – think123 Oct 2 '12 at 1:50

closed as not a real question by casperOne Sep 18 '12 at 12:04

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

Simply use the readonly attribute.

<input readonly value="0" ....>

If you use XHTML you need readonly="readonly" instead of just readonly.

Here's a demo of the attribute: http://jsfiddle.net/VHz6g/.
You can find more information about the attribute it on MDN.

share|improve this answer
Thank you sir. How would I apply this?? – John Doe Jul 17 '12 at 12:24
5  
First, consider using a different nickname. I'll add an example to my answer. – ThiefMaster Jul 17 '12 at 12:24
<input class="input" value="0" style="text-align:right; height:30px; width:250px;" type="text" readonly> – Alvin Wong Jul 17 '12 at 12:24
3  
No way, the website is asking a question. We MUST answer. – Fallenreaper Jul 17 '12 at 12:24
5  
Please do not ask people to upvote you. Usually it causes downvotes and besides that's it's noise and annoying. – ThiefMaster Jul 17 '12 at 12:26
show 7 more comments

How about NOT using input field?

There is no semantic meaning of your input field in this case. Use other element that is more suitable to present "text", such as "p" tag for instance.

share|improve this answer
The output element would be the best one to use in this case: html5doctor.com/the-output-element – dstorey May 8 at 9:39

Use the readonly-attribute to prevent typing into the input. Be aware that advanced users may still insert data into the input (for example by using a browsers code inspector).

share|improve this answer

Using disabled is also an option.

Like this

<input class="input" value="0" style="text-align:right; height:30px; width:250px;" type="text" disabled />
share|improve this answer
3  
I don't think it really fits for something like this. And you can't copy from a disabled input. – ThiefMaster Jul 17 '12 at 12:41
@ThiefMaster We can copy, check – hjpotter92 Jul 17 '12 at 12:42
At least not in Firefox. – ThiefMaster Jul 17 '12 at 12:43
That, I wasn't aware of. Thanks. – hjpotter92 Jul 17 '12 at 12:47

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