Possible Duplicate:
How to hide ajax requests from firebug console?
I would like to use jquery $.get function but when its triggered in console (firebug) everyone can see params I’m sending in this url. Is it any way to encrypt or hide them?
This hiding or encrypting method should be executed in some client side code, otherwise my ajax looses any sense…
I have found some ideas here but is there a better way?
Not possible mate.
And the fact that you want to encrypt your parameters client side tells me you do not understand the fundamentals of encryption.
The best you can do, is during your AJAX request, find the return “parameter” in your “whatever.php” file, then use a hashing algorithm on it.