Is there any alternative to a pop up dialog box with a text box with OK and cancel button.
I tried window.prompt but its not working on my custom defined webkit browser but working on Mozilla and others.
function Add() {
var reg = /^[a-zA-Z0-9_-]+$/;
var newName = window.prompt("New Recipe");
//Check for alphanumeric and 2 special charaters
if(!reg.test(newName)) {
window.alert("only alpha numeric");
return false;
}
if((reg.test(" "))||(newName.length == 0)) {
return false;
}
}