JavaScript Scripts





Español Français 中文 Deutsch Portuguese Japanese nederlands
   
 
Free Java Script Codes
Javascript List All
Slide Show Slide Show
Ad Display Ad Display
Image Effect Image Effect
Animated Image Effects Animated Image Effects
Form Validation Form Validation
Color Picker Tool Color Picker Tool
Formatting Forms Formatting Forms
Select All Select All
Dynamic Form Select Dynamic Form select
Dynamic Color Dynamic Color
Calendar Script Calendar
Textbox Counter Textbox Counter
Alphanumeric Alphanumeric
Date Time Script Date & Time
Stop Watch Script Stop Watch script
Delete Repeated Values Delete Repeated Values
Pagination Pagination
Random Generator Random Generator
Animated Text Animated Text
Cursor Position Cursor Position
User Info Window / User Info
Security Security / Authenticate
Bookmark Bookmark
Mouse Effects Mouse Effects
Title Bar Title Bar
Status Bar Status Bar
Country List Country List
Free Games Free Games
Calculators Calculators
 




Integers with Two decimal places Script


About
This javascript will help you to accept only integers with two decimal places.


Features
a) This javascript is used to accept only integers with two decimal places.
b) Just copy the code into your page and use it.

Preview
Enter a number with up to two decimal places




Code
Javascript
<!--        Script by hscripts.com          -->
<!--        copyright of HIOX INDIA         -->
<!-- more scripts @ http://www.hscripts.com -->

<script type="text/javascript">
function checkDecimals(fieldName, fieldValue)
{
  decallowed = 2;  
  if (isNaN(fieldValue) || fieldValue == "")
  {
    alert("Not a valid number.try again.");
    fieldName.select();
    fieldName.focus();
  }    
  else
  {
   if (fieldValue.indexOf('.') == -1) fieldValue += ".";
   dectext = fieldValue.substring(fieldValue.indexOf('.')+1, fieldValue.length);

   if (dectext.length > decallowed)
   {  
      alert ("Enter a number with up to " + decallowed + "decimal places. try again.");
      fieldName.select();
      fieldName.focus();
   }
   else
   {
     alert ("Number validated successfully.");
   }
  }
}

</script> 

<!-- Script by hscripts.com -->


HTML Code
<!-- Script by hscripts.com -->

<form name="frm">
Enter a number with up to 2 decimal places:<br>
<input type=text name="txt">
<input type=button name=ok value="Ok" onclick="checkDecimals(this.form.txt, this.form.txt.value)"><br><br>
<div align=right>&copy;<a href="http://www.hscripts.com" style="color: #3D366F;text-decoration:none;cursor:pointer;font-size:13px;">hscripts.com</a></div>
</form>

<!-- Script by hscripts.com -->

Release Date - 07-04-2008
Get free version without ©copyright link for just 5 price

For customization of this script or any script development, contact us at support@hscripts.com


Usage
a) This java script is used to accept only integers with two decimal places in a textbox.
b) The function checkdecimals() is called to accept integers with two decimal places.
c) Copy the code into your page and use it.



License
- The javascript (misspelled as java script) is given under GPL License
- i.e. Free use for those who use the codes as it is.
- Free, if your modification does not remove our copyright information and links.
- Click Here for detailed license information.
- You can purchase the script if your requirements does not meet our GPL License terms.
Other Links

web hosting