Forum: JavaScript / DHTML / AJAX Oct 1st, 2008 |
| Replies: 3 Views: 1,502 I'm having trouble validating my form for missing information. Tried many different functions but when submit the form it will reset the form or it will try to send it. I'm lost any help please.... |
Forum: JavaScript / DHTML / AJAX Sep 26th, 2008 |
| Replies: 4 Views: 709 I'm still new to JavaScript and I'm having trouble with an assignment. I can't seem to get my functions to work right for the alert to check for missing information when you submit the page and when... |
Forum: JavaScript / DHTML / AJAX Sep 25th, 2008 |
| Replies: 3 Views: 748 function validate_required(field,alerttxt)
{
with (field)
{
if (value==null||value=="")
{
alert(alerttxt);return false;
}
else
{ |
Forum: JavaScript / DHTML / AJAX Sep 24th, 2008 |
| Replies: 3 Views: 748 Hi, I'm new to Javascript and I'm having trouble with my function to check for missing information in the code. Any ideas? Thanks |