I have a select option field that is populated from the database and I wanted to validate when the user does not select anything and press the submit button. I am not able to get the validation.This is what I have done so far:
For the select option list:
<form id="dataForm" method="get" action="">
<b>Year</b>
<?php
$sql = 'SELECT Year_Id,Year_Released FROM {extdb_year} WHERE Only_For_Trend = 0 ORDER BY Year_Released DESC';
$res = db_query($sql);
echo "<select id='Year_Released' name='Year_Released'>
<option value='-1'>-Select-</option>";
$cnt = 0;
$options = array();
foreach ($res as $row)
{
$cnt++;
echo "<option value = '{$row->Year_Id}'";
if ($cnt==1)
echo "selected = 'selected'";
echo ">{$row->Year_Released}</option>";
$options[$row->Year_Id] = $row->Year_Released;
}
echo "</select>";
?>
<p>
<input class="submit" type="submit" value="Submit"/>
</p>
</form>
JQuery code for the validation
$(document).ready(function(){
$("#dataForm").validate({
rules: {
Year_Released: {
required: true
}
},
messages: {
Year_Released: "You must select a Year."
}
});
});
Any suggestions in this regard will be highly appreciated.