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>