views:

180

answers:

1

My product search on my website uses HTTP POST to submit the search information. I want to track the search results page, learning what people are searching for and the results that they get. I'm told that I have to switch to using HTTP GET to make that happen.

Is there a way to keep using HTTP POST and still have Google Analytics pick up the information?

(copied over from http://superuser.com/questions/89446/can-google-analytics-track-results-from-form-post-action)

+2  A: 

_trackPageView() is what you want. I use it to make specific urls for various Goals, but it would also work for search results. (thanks SleighBoy)

Mike Caron