Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

string in alert box

Status
Not open for further replies.

dreamclutch

Programmer
Oct 3, 2005
21
US
How do I add an 'and' in between RunOnDay and RunONday2 for an alert....

} else {
themessage += RunOnDay += RunOnDay2
alert(themessage)
return false
}
 
else {
themessage = themessage + RunOnDay + RunOnDay2
alert(themessage)
return false;
}
 
I mean how do I physically add the string 'AND' ..the word between the two variables ..so it prints out day AND day in alert.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top