How to create alert only sinlge submit?
Here I have tried javascript for validation a form, If I submit the form the alert msg are coming one by one. I do not like this way. can you solve this one alert display all required details ?
[CODE=javascript] <script type="text/javascript">
<!--
function validate_form ( )
{
valid = true;...
User Profile
Collapse
-
-
create a multiline alert message
Can you help to make one alert with all details?
[CODE=javascript]<script type="text/javascript">
<!--
function validate_form ( )
{
valid = true;
if ( document.form.n ame.value == "" )
{
alert ( "Please fill in the 'Your Name' box." );
valid = false;
}...
No activity results to display
Show More
Leave a comment: