I'm trying to get something of a "quick page access" going. Read below for clarification.My goal is so that when the input is focused and the input key is pressed (keyDown or keyUp?), the browser redirects the user to \[code\]url + text in input\[/code\], so if the domain is "something.com" and the input text is "hello", the user gets redirected to "something.com/hello".I would prefer to stick with JavaScriptThis is what I have so far:\[code\]<input id="coursecode" value="http://stackoverflow.com/questions/13762395/Home" onfocus="this.value=''">\[/code\]JSFiddle Link