Tuesday, 1 October 2013

Jquery errors. can someone please help my. I am working on an international phone number validation

Jquery errors. can someone please help my. I am working on an
international phone number validation

getting an error for this:Uncaught SyntaxError: Unexpected
identifier
not sure what is wrong with my types but it is supposed to be for
a jquery program
I marked where the problem is below
I worked on this for hours on my end. StackOVerflow still expects me to
add context to this. countryCode1= value.substring(0,3); countryCode2=
value.substring(0,2); countryCode3= value.substring(0,1); /final String[]
choice1 = {999|998|997|996|995|994|993|992|991|
990|979|978|977|976|975|974|973|972|971|970|
969|968|967|966|965|964|963|962|961|960|899|
898|897|896|895|894|893|892|891|890|889|888|
887|886|885|884|883|882|881|880|879|878|877|
876|875|874|873|872|871|870|859|858|857|856|
855|854|853|852|851|850|839|838|837|836|835|
834|833|832|831|830|809|808|807|806|805|804|
803|802|801|800|699|698|697|696|695|694|693|
692|691|690|689|688|687|686|685|684|683|682|
681|680|679|678|677|676|675|674|673|672|671|
670|599|598|597|596|595|594|593|592|591|590|
509|508|507|506|505|504|503|502|501|500|429|
428|427|426|425|424|423|422|421|420|389|388|
387|386|385|384|383|382|381|380|379|378|377|
376|375|374|373|372|371|370|359|358|357|356|
355|354|353|352|351|350|299|298|297|296|295|
294|293|292|291|290|289|288|287|286|285|284|
283|282|281|280|269|268|267|266|265|264|263|
262|261|260|259|258|257|256|255|254|253|252|
251|250|249|248|247|246|245|244|243|242|241|
240|239|238|237|236|235|234|233|232|231|230|
229|228|227|226|225|224|223|222|221|220|219|
218|217|216|215|214|213|212|211|210}; final String[]
choice2={98|95|94|93|92|91|90|86|84|82|81|66|65|64|63|62|61|60|58|57|56|55|54|53|52|51|49|48|47|46|45|44|43|
41|40|39|36|34|33|32|31|30|27|20}; final String[] choice3={7|1};/ var
choices=[999|998|997|996|995|994|993|992|991|
990|979|978|977|976|975|974|973|972|971|970|
969|968|967|966|965|964|963|962|961|960|899|
898|897|896|895|894|893|892|891|890|889|888|
887|886|885|884|883|882|881|880|879|878|877|
876|875|874|873|872|871|870|859|858|857|856|
855|854|853|852|851|850|839|838|837|836|835|
834|833|832|831|830|809|808|807|806|805|804|
803|802|801|800|699|698|697|696|695|694|693|
692|691|690|689|688|687|686|685|684|683|682|
681|680|679|678|677|676|675|674|673|672|671|
670|599|598|597|596|595|594|593|592|591|590|
509|508|507|506|505|504|503|502|501|500|429|
428|427|426|425|424|423|422|421|420|389|388|
387|386|385|384|383|382|381|380|379|378|377|
376|375|374|373|372|371|370|359|358|357|356|
355|354|353|352|351|350|299|298|297|296|295|
294|293|292|291|290|289|288|287|286|285|284|
283|282|281|280|269|268|267|266|265|264|263|
262|261|260|259|258|257|256|255|254|253|252|
251|250|249|248|247|246|245|244|243|242|241|
240|239|238|237|236|235|234|233|232|231|230|
229|228|227|226|225|224|223|222|221|220|219|
218|217|216|215|214|213|212|211|210|98|95|94|
93|92|91|90|86|84|82|81|66|65|64|63|62|61|60|
58|57|56|55|54|53|52|51|49|48|47|46|45|44|43|
41|40|39|36|34|33|32|31|30|27|20|7|1]; //var delims = "[|]"; var tokens =
choices.split("|"); if ((value != null)&&
((value.substring(0,1)=="+")||(value.substring(0,2)=="00"))) { for (int i
= 0; i < tokens.length; i++) { //problem line if
(((countryCode1)||(countryCode2)||(countryCode3)).equals(tokens[i])) {
return true; } else { return false; } } }

No comments:

Post a Comment