June 27, 201115 yr Hello, 2 questions. 1) Im using spry tabbed panels. I want to make the content in them scroll, rather than having a scroll on the whole page. Ive tried adding the overflow to scroll but it just has grey bars where the scroll would be and also make it the whole page. Any ideas? 2) Secondly, im making a vinyl sticker website, i need to create a basic calculator to estimate cost. Im working on say a 10p per cm basis. I want to create 2 text inputs in where they put x length and y length. I simply want it to mulitply one by the other then display the answer. Any help with these at all? Craig.
June 27, 201115 yr Hello, 2 questions. 1) Im using spry tabbed panels. I want to make the content in them scroll, rather than having a scroll on the whole page. Ive tried adding the overflow to scroll but it just has grey bars where the scroll would be and also make it the whole page. Any ideas? 2) Secondly, im making a vinyl sticker website, i need to create a basic calculator to estimate cost. Im working on say a 10p per cm basis. I want to create 2 text inputs in where they put x length and y length. I simply want it to mulitply one by the other then display the answer. Any help with these at all? Craig. Hello, 2 questions. 1) Why do you want to use that dreamweaver generated crap anyway? As soon as you start tweaking it, it gets confusing. 2) Why this is so simple and primitive: <script> document.getElementById("button").onclick=function() { input1=document.getElementById("input1); input2=document.getElementById("input2); alert((input1.value)*(input2.value)); return false; } </script> <form id="form"> <input type="text" id="input1" /> <input type="text" id="input2" /> <input type="button" id="button" value="pressme" /> </form> This is just a rough example, I'm pretty sure it won't work on medieval browsers. You have to modify it for production use. Over and out. Edited June 27, 201115 yr by neverminder
June 27, 201115 yr Author I need the calculation to be displayed aswell. Any ideas? Also where do i put the code example you gave me? Im not a web designer nor look to be. But want to know a few things in order to maintain my website.
Create an account or sign in to comment