[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.3

How can I round up the users input to the next thousand using javascript?

Asked by intheory in JavaScript, JScript, Scripting Languages

Tags: Javascript, Any browser

I am creating a title fee calculator and they need every dollar to round up to the next thousand.
I have used  < input onblur="this.value=1000*Math.round(this.value/1000)"> to round the user's input  to the nearest thousand, but I need it to go to the next thousand.  When I alter it with Math.round(this.value/1000)+1 it works perfectly.  18,200 goes to 19,000, which is desirable.  However, 19,000 will go to 20,000, which is not desirable.  I need the numbers that are already an even thousand to stay an even thousand.  The calculator I'm creating goes to 1,000,000.00, so I need a way for when the user enters an even thousand number such as 220,000 it will remain 220,000.  but if they enter 220,001 it needs to go to 221,000.
I am attaching my form and code.  Is there something I'm missing, or is there an easier way to achieve the correct premium amount?
Any help would be greatly appreciated, I've been working on this WAY too long.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
<FORM name="rateform">
      <p align="left"><b><font size=2 face="Verdana" color="#006600"> Enter Policy Amount</font></b> <br />
                  <br />
                  <INPUT name=insurance size="35" style=background-color: #FFFFFF; border: 1px inset #C0C0C0; font-size:11px; onblur="this.value=1000*Math.round(this.value/1000+1)">
</TR>
      <p align="left"><font size=1 face="Verdana">Do not enter any 
                currency symbols or commas<br>
                </FONT>                
      <p align="left"><font color="#006600" size="2" face="Verdana">
                <input onclick=calculateRate(); type=button value="Calculate Base Premium:" name=calculate_rate style="border:1px solid #006600; font-family: Arial; font-size: 8pt; background-color: #81AA71; color:#FFFFFF; font-weight:bold" />
                </font>
      <p align="left"><b> <font size=2 face="Verdana" color="#006600">Base Premium</font></b>
                    </TD>
        <br />
                    <br />
                    <INPUT size=35 value=0 name=Loan_Policy style="border: 1px inset #C0C0C0; font-size:11px"></TD>
                  
                    <script language=JavaScript>
 
 
function calculateRate(){
  var insurancevalue;
  var loan_Policy = "";
 
  insurancevalue = document.rateform.insurance.value;
  loan_Policy = basic_premium(insurancevalue);
 
    document.rateform.Loan_Policy.value = "$" + loan_Policy;
 
}
     
function basic_premium(value){
  var premium;
  var overmin;
 
 
 
    
    
  function  validateNumeric( strValue ) {
  var objRegExp  =  /^[0-9]*$/;
 
  //check for numeric characters
  return objRegExp.test(strValue);
}
 
if( !validateNumeric(value))
	    { premium = alert("Please enter the value in whole dollar ammount without commas or decimals");
      window.location.href = "titlefee-loan2.shtml";
    }   
    
 if( !validateNumeric(value))
	    { premium = 0;
    }   
 
 
	else if ( (value >= 1) & (value <= 16000) )
       {  overmin = ((50)); 
       premium = (overmin);
    }
	else if ( (value >= 16001) & (value <= 17000) )
       {  overmin = ((51)); 
       premium = (overmin);
    }
	else if ( (value >= 17001) & (value <= 49999) )
    {  overmin = ((value)); 
       premium = (overmin*.003)-3;
    }
	else if ( (value >= 50000) & (value <= 50000) )
    {  overmin = ((value)); 
       premium = (overmin*.003)-3;
    }
	else if ( (value >= 50001) & (value <= 99999) )
    {  overmin = ((value)); 
       premium = (overmin*.0025)+25;
    }
	else if ( (value >= 100000) & (value <= 100000) )
    {  overmin = ((value)); 
       premium = (overmin*.0025)+25;
    }
	else if ( (value >= 100001) & (value <= 49999) )
    {  overmin = ((value)); 
       premium = (overmin*.002)+75;
    }
	else if ( (value >= 500000) & (value <= 500000) )
    {  overmin = ((value)); 
       premium = (overmin*.002)+75;
    }
	else if ( (value >= 500001) & (value <= 999999) )
    {  overmin = ((value)); 
       premium = (overmin*.00175)+200;
    }
	else if ( (value >= 10000000) & (value <= 10000000) )
    {  overmin = ((value)); 
       premium = (overmin*.00175)+200;
    }
 
 
	 var temp1 = (premium);
    
    var s1 = temp1.toString();
    var decimalExists = s1.indexOf('.')
     
    if(decimalExists == -2)
        s1 = s1+".00";
        
    else
  {  
    if( (s1.length - decimalExists) == 2) 
      s1 = s1+"0";
      
{
	
	}
	
}
    return s1
}
                    </script>
    </FORM>
 
Related Solutions
Keywords: How can I round up the users input to t…
 
Loading Advertisement...
 
[+][-]10/31/08 11:47 PM, ID: 22855905Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: JavaScript, JScript, Scripting Languages
Tags: Javascript, Any browser
Sign Up Now!
Solution Provided By: bitter_chicken
Participating Experts: 1
Solution Grade: A
 
[+][-]10/31/08 11:46 PM, ID: 22855903Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/01/08 12:09 AM, ID: 22855921Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091118-EE-VQP-93 / EE_QW_2_20070628