Get URL VariablesAdminOcak 30, 2018Example for URL http://www.example.com/index.html?hello=bonjour&goodevening=bonsoir var hash = getUrlVars(); alert(hash[‘hello’]); // prints ‘bonjour’ alert(hash[‘goodevening’]); // prints ‘bonsoir’ // Read a page's ... Read More