Unesite tražene podatke i uz pomoć našeg kalkulatora saznajte koji vam je očekivani termin porođaja. No, pazite, to je samo prosječni izračun, sasvim je normalno da bebice požure ili zakasne dva tjedna od očekivanog datuma.
jQuery(document).ready(function() {
dConception = new Date(); // conception date nSecs = 60*60*24*1000; nCycle = 28; // Default cycle
jQuery('#btn-calculate').click(function() {
// Get input values var d = jQuery("#dan").val(); var m = jQuery("#mjesec").val(); var y = jQuery("#godina").val(); nCycle = jQuery("#ciklus").val();
// Get the start of the ovulation var starto = new Date(); starto.setFullYear(y); starto.setMonth(m-1); starto.setDate(d); starto.setTime(starto.getTime() + ((nCycle * nSecs) - nSecs*14)); dConception.setTime(starto.getTime()); // Report the results jQuery("#res-1").html ( format_date(starto) );
var duedate = new Date(); duedate.setTime(starto.getTime() + nSecs*266); jQuery("#res-4").html ( format_date(duedate) );
var timenow = new Date(); var elapsed = Math.round((timenow.getTime()-starto.getTime())/nSecs); jQuery("#res-5").html ( "" + (Math.floor(elapsed/7)+2) + " tjedana, " + Math.floor(elapsed%7) + " dana" ); starto.setTime(starto.getTime() + nSecs*70); jQuery("#res-2").html ( format_date(starto) );
starto.setTime(starto.getTime() + nSecs*105); jQuery("#res-3").html ( format_date(starto) ); });
function format_date(date) { var month = new Array("Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"); return("" + date.getDate() + ". " + month[date.getMonth()] + " " + date.getFullYear() +"."); } });
Datum početka zadnje menstruacije: 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Siječanj Veljača Ožujak Travanj Svibanj Lipanj Srpanj Kolovoz Rujan Listopad Studeni Prosinac 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020
Broj dana u menstrualnom ciklusu:
Najvjerojatniji datum oplodnje:
Kraj prvog tromjesečja (12 tjedana):
Kraj drugog tromjesečja (27 tjedana):
Koliko ste trenutno trudni:
Očekivani datum poroda (40 tjedana):