Skip to content

Instantly share code, notes, and snippets.

@Himura2la
Last active December 4, 2019 10:02
Show Gist options
  • Save Himura2la/8d12fa0fa4a02c7a981b1fbeed443480 to your computer and use it in GitHub Desktop.
Save Himura2la/8d12fa0fa4a02c7a981b1fbeed443480 to your computer and use it in GitHub Desktop.
Assemble a URL using jQuery
let makeURL = (origin, location, parameters) => [origin, ...location].join('/') + '?' + $.param(parameters)
makeURL(window.location.origin, [ 'search' ], { 'query': 'hello world' })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment