**hello When I push submit the page refresh. Any suggestions to stop refresh ? I'm assuming it's something to do with the submit button but I can't figure it out
this is my script :**
<form id="form1" class="form-horizontal" method="POST" action="">
<input type="hidden" name="action" value="ajouter_reservation" />
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Ajouter une reservation</h4>
</div>
<div class="modal-body">
<div class="form-group">
<label for="start" class="col-sm-2 control-label"> date debut
</label>
<div class="col-sm-10">
<input type="text" name="start" class="form-control" id="start" readonly>
</div>
</div>
<div class="form-group">
<label for="end" class="col-sm-2 control-label">date fin
</label>
<div class="col-sm-10">
<input type="text" name="end" class="form-control" id="end" readonly>
</div>
</div>
>
<div class="form-group">
<label for="end" class="col-sm-2 control-label">Nombre de client
</label>
<div class="col-sm-10">
<input type="text" name="nb_client" class="form-control" id="nb_client" >
</div>
</div>
<script type="text/javascript">
function res(){
A.style="display:block";
}
$('#form1').submit(function(e){
e.preventDefault();// using this page stop being refreshing
// Prevent Default Submission
$.ajax({
url: 'reservation.php',
type: 'POST',
data: $(this).serialize(), // it will serialize the form data
dataType: 'html'
});
});
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<center><input type="submit" onclick="res();" class="btn btn-primary text-center" value="suivant"></center>
<div style="display: none;" id="A">
<div class="form-group">
<label class="col-sm-2 control-label">Chambre</label>
i'm in the page reservation.php and i need to stop refresh when i clic in input type = submit i tried the script above but it still refresh Any suggestions ?