How to solve indexOf javascript problem in internet Explorer?
indexOf is not supported by dump web browser internet explorer. To solve this we need to add following code in our javascript file. if (!Array.prototype.indexOf) { Array.prototype.indexOf = function (elt /*, from*/) { var...
Recent Comments