We're using google translate to translate some shorter texts dynamically on our site. The current implementation looks pretty much like this example in google code playground.
Now we need to translate slightly longer texts, which are too long for GET-method. From google documentation it seems to be possible to use POST for sending the translation string.
Can anybody explain how to get it to use POST as there is no form that's submitted and the data sent to google contains only text and source/target languages?
Thanks in advance.