Edittable URL Pop Up Windows

Zpixel

New Member
How do you open a tabless popup for users that allows users to still edit the address bar?Goal: We are trying to create small tabless pop up windows so the user can drag them on top of their current applications while working. But they sometimes need the ability to change their url slightly.For example if you have the following code:\[code\]<!doctype html><div id=test>open</div><script>document.getElementById('test').onclick = function(){ window.open("http://stackoverflow.com", "_blank", "resizable=yes, scrollbars=yes, titlebar=yes, width=300, height=300, top=10, left=10");}</script>\[/code\]http://jsbin.com/axomid/1/
Fqxns.png
So how do you allow the user to successfully edit the url bar.For example I would like the user to be able to change stackoverflow.com to stackexchange.com.
 
Back
Top