I want to add var to the url with a function that has a bounf for the click event.
Say URL: www.example.com
after starting this function.
www.example.com?folder=beats
I have a function capturing the value of the right folder, but you need to add it to the current URL of the page.
function fileDialogStart() {
$folder = $('#ams3Folder').val();
}
any help
source
share