I am using the functions strpos(string, string) in javascript. In Firefox, Opera and IE the page loads fine, but in Chrome I get the error: Uncaught ReferenceError: strpos is not defined. The page I am working on is http://seniorproject.korykirk.com/0xpi2.php
|
|
|||
|
|
|
|
||
|
|
|
|
strpos is not part of the ECMAScript Language Specification ECMA-262 3rd edition (commonly known as javascript) Like Artelius wrote, use haystack.indexOf(needle,start) or haystack.lastIndexOf(needle,start) (where start is optional) |
|||
|
|
