Window Browser JavaScript DHTML



window.prompt() Method

function populateTable() {
    var howMany = prompt("Fill in table for how many factors?","")
    if (howMany != null && howMany != "") {
        alert("Filling the table for " + howMany)
    }
}