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
 




Javascript inArray


About
 Javascript inArray concept is used to find whether given value is present in an array or not. Enter the value into textbox and find whether the given value is present in array or not.


Features
a) You can verify whether the value entered in the textbox is present in an array.
b) Copy the code from the given textarea and use it.

Preview

Enter value into Textbox to check whether it is present in array.
The array has value from 1 to 10.

Value:

   


Code
Javascript Code
<!-- Script by hscripts.com -->
<script type="text/javascript">
Array.prototype.inArray = function (value)
{
// Returns true if the passed value is found in the
// array. Returns false if it is not.
var i;
for (i=0; i < this.length; i++) 
{
	if (this[i] == value) 
	{
	return true;
	}
}
return false;
};
function cal(xx)
{
	var arr= new Array(1,2,3,4,5,6,7,8,9,10);
	if(arr.inArray(xx))
	{
		alert("Your value is found in the Array");
	}
	else
	{
		alert("Your value is not found in the Array");
	}
}
</script>

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

Release Date - 07-01-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) Copy the above Javascript code into the <head> tag of your file.
 b) Creating a HTML form using following code.
 <form name=arra onSubmit="cal(arra.val.value)">
 <input type=text name=val size=12 style="border-color:blue;">
 <input type=submit name=cs value="Submit">
 </form>

 c) Here, the function "cal(form.val.value)" is called by passing the entered value in the textbox as argument. Then the function checks whether the argument passed is present in the array or not and returns message accordingly.
 d) 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