window.onload = function() { jQuery.ajax({ url: "///ajax/meestCalculator.php?getHTML=true&l="+jQuery('#meestCalculator').data('language'), type: "POST", async: true, cache: false, dataType : "html", data:(jQuery('#transit_form').length>0 ? jQuery('#transit_form').serialize() : ''), success: function(rtn){ jQuery('#meestCalculator').html(rtn); }, error: function(rtn){ jQuery('#meestCalculator').html('Could not get calculator'); } }); }