[jQuery] Using $_POST to transmit large key/pair

[jQuery] Using $_POST to transmit large key/pair


I have the following code:
$.post(order_send_email.php?order_message='+order_message)
my 'order_message' is:
'Dear '+data['salutation']+" "+data['first_name']+" "+data['last_name']
+', \n\nThis is to inform you that your order #'+key+" and payment in
the amount of...';
When using $.POST... the message gets cut before "#". Is there a limit
on how much cam be transmitted or am I doing something wrong?
Thanks.