I have successfully searched, using visualization API coupled with javascript, my google spreadsheet and returned expected results
My issue now is I am searching a row of numbers with an ampersand in it. The number reads like so: S&D01234
I have tried two methods to search for the number;
1.) using encodeURIComponent
2.) replace & with the unicode - U+0026
there is now error with either of these methods, but it returns headers only with no data.
I also alerted the value of my var in both cases, they were:
1.) S%26D01234
portion of the rendered URL: SELECT+A,+B,+C,+D,+E,+F,+G,+H,+I,+J+WHERE+F+CONTAINS+%27S%26D01234%27&gid=0
2.) SU+0026D01234
portion of the rendered URL: SELECT+A,+B,+C,+D,+E,+F,+G,+H,+I,+J+WHERE+F+CONTAINS+%27SU+0026D01234%27&gid=0
Neither works.
Any ideas?
Robert