vote up 0 vote down star
1

How can you check an empty tag -field by Javascript like in asking questions at SO?

I would not like to pass the user to send a question without specifying the tag.

flag

Thank you for your answer! – Masi Aug 21 at 3:42

1 Answer

vote up 2 vote down check

To start you off, in your page:

function validateForm()
{
    var tags = document.getElementById('tags').value;
    if(tags == '' || tags == null) {
        alert('Please enter one or more tags');
        return false;
    }
    return true;
}

<form method="post" onsubmit="javascript:validateForm()">
<input type="text" id="tags" name="tags"/>
<input type="submit" value="Post your question"/>
</form>

In your PHP script:

if(isset($_POST['tags']) && !empty($_POST['tags'])) {
    $tags = $_POST['tags'];
}
link|flag
So the first JS code should be attached to the action of the send button in PHP. Then, I need to put your first code the JS file which I then source at index.php. – Masi Aug 21 at 3:44
@Masi - That sounds about right. Note the 'return false' in the JS code above, that will prevent the form from submitting. – karim79 Aug 21 at 3:46
My code puts the question to my database although no tag given. I do get the alert. My code is this dpaste.com/83449 Do you see the problem? – Masi Aug 21 at 4:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.