Jump to content

[SOLVED] $('Submit').click(function) before goes to php


php_guest

Recommended Posts

<form action="complited.php" method="post">

<input type="text" name="test" />

<input type="text" name="test2" />

<input type="submit" />

</form>

 

Please tell me how I can check on submit click if any text field is empty before it goes to complited.php with jquery. I want to check on click if any name is empty. If it is, than var checking=1 else continue with complited.php.

 

Thank you

Link to comment
Share on other sites

so far I know I need to create function which will be executed onsubmit. But the problem I have is how to make if isGood = false { alert("Please fill all your data") before sending user to php file. Now it send user there in any way, either if isGood=false or true.

 

 

<form action="complited.php" method="post" onsubmit="validate();">

<input type="text" name="test" id="test" />

<span id='testVal'></span>

<input type="text" name="test2" id="test2" />

<span id='test2Val'></span>

<input type="submit" />

</form>

 

<script>

function validate() {

var isGood = true;

 

//validate test

if(document.getElementById('test').value=='') {

isGood = false;

document.getElementById('testVal').InnerHTML = 'required';

}

 

//validate test2

if(document.getElementById('test2').value=="") {

isGood = false;

document.getElementById('test2Val').InnerHTML = 'required';

}

 

//return true or false

return isGood;

}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.