| Current Path : /home/ataenra/www/ATA/INTRANET/Tech/MesSav/ |
| Current File : /home/ataenra/www/ATA/INTRANET/Tech/MesSav/test.php |
</form>
<script>
type="text/javascript">
$(document).ready(function(){
var current = 1,current_step,next_step,steps;
steps = $("fieldset").length;
$(".next").click(function(){setProgressBar(++current);});
$(".previous").click(function(){setProgressBar(--current);});
setProgressBar(current);
// Change progress bar action
function setProgressBar(curStep){
var percent = parseFloat(100 / steps) * curStep;
percent = percent.toFixed();
$(".progress-bar")
.css("width",percent+"%")
.html(percent+"%");
}
});
function RETURNchantier1() {
$("#field-2").hide();
$("#field-1").show();
console.log("Calling show");
return true;
}
function TOchantier1() {
$("#field-1").hide();
$("#field-2").show();
}
</script>