I apologize in advance for not being able to provide additional information, if this is not possible with limited information, I will delete the question.
So, I have a script that generates a search engine view that depends on the script (also dynamically generated), which is quite complicated, and I do not affect it.
When you click the "Apply" (search) button, the search process starts and you can see the results of the new URL with several parameters.
E. g.: http://www..example.com/...&ThisParameter=XYZ&SecondParameter=foo&ThirdParameter=bar
My question is: is it possible to change "ThisParameter=XYZ" to something else, e. d. "ThisParameter=Something" .
The problem is that I donβt know how the URL is configured and whether this can affect it, so I need a code that just runs any URL and changes that part.
Thanks for your feedback in advance!
EDIT
I found the part of the script that affects the generated URL. When I change it in the DOM, it redirects me to the desired page.
var options = {"FOO":123,"BAR":"ABC","ThisParameter":"STH","EXAMPLE":123, ...}
And this is the result when you select the "copy path":
_options[0].ThisParameter
javascript jquery
take2
source share