I have the same ajax request firing from two locations:
$.post("/conversations", ... );
Fired from domain.com/chat
, the request is sent to domain.com/conversations
correctly.
Fired from domain.com/u/blah
, the request is sent to domain.com/u/conversations
incorrectly.
How do I get both to send to the former's destination?