faqts : Computers : Programming : Languages : JavaScript : Forms

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

8 of 22 people (36%) answered Yes
Recently 5 of 10 people (50%) answered Yes

Entry

How make different actions for press button?1)check textbox empty alert message2)not empty open page

Aug 11th, 2006 16:01
David Alden, cat cat,


if(document.formName.textBoxName.value == ""){
    alert("please fill in text box");
} else {
    document.location="url of page to open";
}