extranet/www/js/kbis.js

54 lines
1.1 KiB
JavaScript
Raw Normal View History

function checkKbis(start)
{
if(start>=1){
$.post( 'pages/kbis2.php', {
ajax: 'true', start: start, siret: siren },
function (data, textStatus) { url = data; }
);
}else{
$.post( 'pages/kbis2.php', {
ajax: 'true', start: 0, url: url, siret: siren },
function (data, textStatus) {
if( data!='' && data!='FALSE' ){ updateKbisInfo(data); }
}
);
}
}
function updateKbis()
{
$('#progressbar').reportprogress(++pct);
if(pct==100){
updateInfo(message);
pct=0;
}
if(Math.floor(pct/checkInterval)!=prec){
prec = Math.floor(pct/checkInterval);
checkKbis(false);
}
}
function updateKbisInfo(html){
$('#result').html(html);
clearInterval(holdTheInterval);
}
$(document).ready(function()
{
$('input[type=checkbox][name=sendmail]').live('click', function()
{
if($(this).attr('checked')== true){
$('#formMail').css('display', 'block');
}else{
$('#formMail').css('display', 'none');
}
});
$('form[name=mailkbis]').submit(function(){
var eMail = $('input[name=mail]').val();
if(!checkEmail(eMail)){
alert('Veuillez saisir une adresse email.');
return false;
} else { return true; }
});
});