
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Fix Array indexOf in JavaScript for Internet Explorer Browsers
To fix Array.indexOf() for Internet Explorer web browser, use the following −
jQuery.inArray( value, array [, fromIndex ] )
Add the following,
<!--[if lte IE 10]>
Let’s see the prototype here,
<!--[if lte IE 10]> <script> if (!Array.prototype.indexOf) { // add code } </script> <![endif]-->
Advertisements