You can add different parameters into the URL (inside ‘link options’).
First, define some objects with a list of parameters in the global scope, for example:
var params = {
param1: “value1”,
param2: “value2”
};
All the data from the object will be added to the URL as parameters when the user clicks on the element.
In our case, if we use “http://adoric.com”, the outcome URL will be https://adoric.com/?param1=value1¶m2=value2