Stay organized with collections
Save and categorize content based on your preferences.
Sets the value of the page's URL fragment. The fragment encodes a dictionary of keys and values. If a dictionary is supplied as the first argument, the key/value pairs in that dictionary will be encoded and replace the current URL fragment. If a key string is provided, then only that key (and its value, the second argument) are updated, and the rest of the URL fragment is unchanged.
Usage
Returns
ui.url.set(keyOrDict, value)
Argument
Type
Details
keyOrDict
Dictionary
Either a key to update a single value in the URL fragment, or a dictionary of key/value pairs which will replace the existing URL fragment. Dictionary values must be of type string, number, or boolean.
value
Boolean|Number|String, optional
The new value to associate with a single key. This is required when the first argument is a string and is otherwise ignored.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["`ui.url.set` lets you modify the URL fragment, which stores data as key-value pairs."],["You can either replace the entire fragment with a new dictionary or update a single key's value."],["Dictionary values in the URL fragment must be strings, numbers, or booleans."]]],[]]