I need a way to overwrite the jQuery $.post method, parameters url.
I need to append a string to every script I have without editing them one by one. The string value may change because it’s created by the system.
I know there’s a way to overwrite at 100% the value of the parameter but not just appending.
Thanks you.
Consider using a custom function:
So you wrap the overriding logic once in
updateUrl, and that’s it.