Create A Water Bill That Calculates The Number Of Gallons
Mar 15, 2010
I have a javascript class and one of the assignements that we had to do was create a water bill that calculates the number of gallons used and the price for the water consumption. It will not work at all...
View 7 Replies
ADVERTISEMENT
Aug 16, 2010
I'm looking to make a payment form that calculates the prices as you go along, similar to this
i just dont know how to go about it, is there software that can be used?
View 3 Replies
View Related
Oct 2, 2011
I am trying to create a order form that auto calculates my totals as I enter the quantities. It comes up with Not a Number(NaN).Below are snippets from my code this is obviously in a <form>:
HTML:
<!-- Row 3, Col 3 purchase boxes -->
<td colspan="1" height="120" align="left">
<input style="margin-left: 60px" type="text" name="bed_359" size="3" maxlength="3" onchange="calculateValue(this.form)" /> R359</td></tr>[code].....
View 7 Replies
View Related
Sep 3, 2010
I have a form & I want the customer to be able to check a box if the bill to information is the same as the ship to information & have the information automaticlly put into the appropriate boxes. I have the following script in the head of my html page:
<script language="JavaScript">
<!--
function shipsame()
[code]....
View 5 Replies
View Related
Aug 25, 2009
I need to have the user input 5 set of; miles, and gallons used to calculate mpg. Also need to total miles and gallons used. I have the array ok, but i cannot remember how to figure mpg for each array element. this is what i have. everything works execpt the mpg for each array element.
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0
View 8 Replies
View Related
Feb 22, 2010
Write a program that calculates and displays a person's body mass index (BMI). The BMI is often used to determine whether a person with a sedentary lifestyle is overweight or under-weight for his or her height. A person's BMI is calculated with the following forula: BMI = weight x 703 / height^2
Where weight is measured in pounds and height is measured in inches. The program should display a message indicating whether the person has optimal weight, is underweight, or is overweight. A sedentary person's weight is considered optimal if his or her BMI is between 18.5 and 25. If the BMI is less than 18.5, the person is considered underweight. If the BMI value is greater than 25, the person is considered overweight.
View 2 Replies
View Related
Feb 12, 2011
working on building a website at the moment. and i need to create a script that will increment a number by 0.01, then stop and decrease by 0.03, then increase again by one. I wrote code to increment by 0.01 continuouly but now i can't stop it. and change to decreasing
<script type = "text/javascript">
num = 0.87;
var tim = 0;
[code]....
View 2 Replies
View Related
May 24, 2011
How would I go about creating a random number between 1-50 that COULD include whole numbers, decimals to the tenth, hundredth and the thousandth place?
Ex) 2.145, 3, 5.8, 41.002, 10.12, 7, 18.023, 33.2
Also, if the only way to do it is to put trailing zeros to the thousandth place that's fine as well
Ex) 2.145, 3.00, 5.800, 41.002, 10.120, 7.00, 18.023, 33.200
View 7 Replies
View Related
Mar 20, 2009
I just want to create an array of numbers counting from 1 to a given number.
At the moment I have the for loop running like this:
var i=0;
for (i=1;i<=10;i++)
{
if (i == 1)
[Code]....
This outputs 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
How can I put this output into this variable: 'var ids' so I get out
var ids= [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
View 4 Replies
View Related
Oct 26, 2011
Create a function that prompts user for a number. Develop the program so that it continues to prompt until it receives valid information. Then create a multiplication table that displays the number multiplied by 1 through prompted number.
View 6 Replies
View Related
Nov 30, 2009
How do i create a phone number form box in javascript using no inner html . there must be at least one dash in it. code...
View 3 Replies
View Related
Sep 29, 2009
I need to create a script that allows a user to enter a number, in either celsius or fahrenheit textbox....then they can click the button and the conversion is placed in the blank textbox
C = (F 32) * 5 / 9
F = C * 9 / 5 + 32
<table border="1">
<tr>
<th>Fahrenheit</th>
<th></th>
[Code]....
View 1 Replies
View Related
Nov 10, 2005
How do I create random 15 letter/number piece of text that is composed of letter and numbers jumbled together then automatically place that in a field? This is all of course activated by a link.
View 4 Replies
View Related
Sep 24, 2011
I need to create a form which has a dynamic number of text fields. So, I created this input type :
PHP Code:
<input id="benamount" name="benamount[]" type="text" disabled="disabled" size="40"/>
<input type="checkbox" name="ben[]" onchange="check();"/>
[code]....
View 2 Replies
View Related
Oct 26, 2011
- Create a function that prompts user for a number.
- Develop the program so that it continues to prompt until it receives valid information.
- Then create a multiplication table that displays the number multiplied by 1 through prompted number.
How to get the function to work.
View 5 Replies
View Related
Oct 13, 2009
Have a computed field ("Subtotal"). With that number, need to set up rule such that if Subtotal is a certain number, a certain number will print in the new field (lets call it "First").[code]...
View 4 Replies
View Related
Jun 7, 2011
I have a background that is a shelf full of books, I wanted to figure out what I would need to do in order to make a random number of books pop out on mouse over (individually), and upon click have the book pulled out and be flipped through and read like a book. Would I have to recreate the library picture completely to make the random books moveable? And would I have to create the books that I want to move from the bookshelf?
how to pull the book out from the book shelf so that it looks like it's coming towards me and then to make it look like it has been pulled out. Would I need to use animation for this? What would be the parts to the animation required?
A little background on my knowledge of javascript: I understand the concepts of it and can understand it when I read it or its explained to me. I am looking to create something as simple as I can, I thought having a background and something basic like a few books be able to pop out. When I realized css couldn't do this and css3 wasn't supported by most browsers I turned to javascript and have been trying to figure out the steps I would need to do to do this specifically.
View 2 Replies
View Related
Oct 21, 2011
I wanted to create a small DHTML code that created a unordered list of input forms dependent on the number selected from the select dropdown menu. Problem is that it doesn't seem to want to generate the list. I think the variables are within the scope of the function too, and I didn't get an errors from the javascript console when using firebug. The script itself runs, I tested it when I used the old standby alert(); to see if the script was active. Here's the code:
[Code]...
View 14 Replies
View Related
Jan 16, 2010
[url] I found a script that calculates the price of a journey from A to B using this formula:
Quote:
This current formula is not accurate.
Here is what I need:
First 2 Miles = £5
Each mile after that = £3
View 5 Replies
View Related
Nov 11, 2011
I have this script that is supposed to check if a number the user guesses is the same as the randomly generated number.Problem is that the random number generated at the start of the program keeps on changing everytime I click on the "Check if I'm right" button, the random number gets generated again and I never ever get to reach the correct answer
HTML CODE
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
[code].....
View 3 Replies
View Related
Feb 20, 2010
Hello everyone... I've got a question about an onKeyUp event. I'm using a text box that HAS to be a negative number therefore it has to have a - sign in front of the number. Can someone point me in the right direction as to how to write a function to do this? Thanks so much...
View 5 Replies
View Related
May 5, 2011
I am working on trying to create a Picture Bingo JavaScript. I am using the standard Bingo Card Generator and it works great however, I need help coding the script so that the number are associated with a picture for example everytime number 12 would show up on the card an image would replace the number. Here is the code that I am using:
[Code]...
View 1 Replies
View Related
Jun 16, 2011
When updating our agency's webpage daily, [URL] I am looking for a shortcut to save time.. When I update air quality numbers. I have to put the conditions. Ex.. 50 = good 100= moderate etc etc. As you see here(bold and underlined)
[Code]...
Well instead of having to type good or moderate every-time to correlate with the numbers, I want to find a way the category can automatically default correctly when I put in just the number. Ex, if I put in the number 100, it automatically knows to issue/ put Moderate with out me having to type it. I semi wrote a code .. Yet can't seem to know how to execute. Seeing if Maybe I can get some assistance.
[Code]...
View 4 Replies
View Related
Nov 29, 2011
I have a function below where every time a question is submitted, it will add a new row in the table with a textbox which allows numbers entry only. My question is that I don't know how to code these features in this function:
I want the text box to be between 0 and 100, so if text box contains a number which is above 100, it will automatically change the number to the maximum number which is 100.
Does any one know how to code this in my function below in javascript:
Code:
View 1 Replies
View Related
Jul 7, 2011
When I used toFixed() method on a number, I thought that this method round a number to a specified approximation, but I got a surprising result, the number became string! 15.23689.toFixed(2) ==> "15.24". So does it convert the number into string?
View 6 Replies
View Related
Nov 28, 2011
I am trying to figure out how to make a random number I can plug into a script count down from that number at certain times of the day until it reaches 0. I would like it to reset itself at midnight every day. I'm trying to make it work with a script I found on here that resets itself at midnight every day. So instead of it counting down too fast, it would count down to the next number after a randomly generated number of minutes until it reaches 0. But it wouldn't necessarily have to end at 0 at midnight. It could go from 845 to 323 at the end of the day at a slower pace. Is that possible?
View 5 Replies
View Related