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
You can verify whether the value entered in the textbox is present in an array.
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.
Downloads
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 -->
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.