JQuery Routes Plugin. http://routesjs.com/
sample url : ../support/overview
No problem
$.routes({
"/support/overview": function(){}
});
** In this way, the url does not work **
/support/overview/?id=1&cid=1
$.routes({
"/support/overview": function(){}
});
What am I doing wrong?
You’re supposed to be submitting this url
like so:
and to write your route
like so:
That should fix your problems.