Wednesday 16 September 2015

php while loop form validation using jquery

<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script><script>
function sendContact(id) {
if(!$("#userName_"+id).val()) {
$("#userName_"+id).focus();
alert('Enter the First Name');
valid = false;
}
return valid;
}
</script>
</head>
<body>

<?php 
$i=1;
while($i<5){
?>
<div>
<label>Name</label>
<input type="text" name="userName" id="userName_<?php echo $i; ?>" >
<input type="submit" name="submit" value="submit" onClick="sendContact(<?php echo $i; ?>);">
<?php $i++; }  ?>


No comments:

Post a Comment