Reputation: 645
How could I check a textbox before submition?
<form action='search.php' method='GET'>
<input type="text" id= "q" name="q" class='textbox' >
<input type="submit" id='submit' value="Search" class ='button' >
</form>
Upvotes: 2
Views: 6889
Reputation: 1481
You can use some stylish jQuery library for easy coding like jQuery validation plugin.
Upvotes: 0
Reputation: 949
You can use jQuery as in the following:
$(function(){
$('#submit').click(function(e){
if($('#q').val() != null && $('#q').val().length > 0){
$.get('search.php', $('#formId').serialize(), function(result){});
}
else{
//Otherwise do this
}
e.preventDefault();
});
});
Upvotes: 0
Reputation: 463
Try this simple with JavaScript validation:
<html>
<head>
<script type="text/javascript">
function check()
{
var searchtext = document.getElementById("q").value;
if(searchtext=='')
{
alert('Enter any character');
return false;
}
}
</script>
</head>
<body>
<form action='search.php' method='GET' onSubmit="return check();">
<input type="text" id= "q" name="q" class='textbox' >
<input type="submit" id='submit' value="Search" class ='button' >
</form>
</body>
</html>
Upvotes: 3
Reputation: 9040
<?php
if(!empty($_GET['q']))
{
//if it is not empty, do something
}
else
{
//otherwise do this
}
?>
May I also recommend using POST rather than GET if you're sending something from a form.
Upvotes: 2