vote up 2 vote down star

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

flag
I'm lost! are you talking about the PHP function strpos() or one of the JavaScript functions substr() or substring()? – scunliffe Feb 28 at 17:02

2 Answers

vote up 4 vote down

Use haystack.indexOf(needle).

link|flag
vote up 4 vote down

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)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.