This is kind of unusual, but is there anyway to add text into JavaScript via the input tag?
For instance,
<input type="text" id="example" />
and let's say the JavaScript is
function show_alert()
{
alert("The text entered in #example will show up here");
}
Is this anyway possible?