Lavori attuali relativi a Artisanal Pizza Professional - Fasano - Bebeepizza

  • Pizza Chef

    22 minuti fa


    Fasano, Italia Crazy Pizza A tempo pieno

    Pizza Chef – Crazy Pizza Savelletri Who are we? At Crazy Pizza, we are a lot more than just pizza; we are the new sleek dining style that brings the passion and spirit of Italy to tables combining incredible service and topnotch dishes in exclusive locations across the globe. Founded on the principles of innovation and excellence, Crazy Pizza, part of...

  • Pizza Chef

    4 minuti fa


    Fasano, Italia Crazy Pizza A tempo pieno

    Pizza Chef – Crazy Pizza SavelletriWho are we?At Crazy Pizza, we are a lot more than just pizza; we are the new sleek dining style that brings the passion and spirit of Italy to tables combining incredible service and topnotch dishes in exclusive locations across the globe. Founded on the principles of innovation and excellence, Crazy Pizza, part of...

  • Pizza chef

    2 minuti fa


    Fasano (BR), Italia Crazy Pizza A tempo pieno

    Pizza Chef – Crazy Pizza SavelletriWho are we?At Crazy Pizza, we are a lot more than just pizza; we are the new sleek dining style that brings the passion and spirit of Italy to tables combining incredible service and topnotch dishes in exclusive locations across the globe. Founded on the principles of innovation and excellence, Crazy Pizza, part of...

  • Pizza Chef

    5 minuti fa


    Fasano (BR), Italia Crazy Pizza A tempo pieno

    Pizza Chef – Crazy Pizza Savelletri Who are we? At Crazy Pizza, we are a lot more than just pizza; we are the new sleek dining style that brings the passion and spirit of Italy to tables combining incredible service and topnotch dishes in exclusive locations across the globe. Founded on the principles of innovation and excellence, Crazy Pizza, part of...

  • Pizza chef

    25 minuti fa


    Fasano (BR), Italia Crazy Pizza A tempo pieno

    Pizza Chef – Crazy Pizza SavelletriWho are we?At Crazy Pizza, we are a lot more than just pizza; we are the new sleek dining style that brings the passion and spirit of Italy to tables combining incredible service and topnotch dishes in exclusive locations across the globe. Founded on the principles of innovation and excellence, Crazy Pizza, part of...

Artisanal Pizza Professional

3 ore fa


Fasano, Italia Bebeepizza A tempo pieno

Pizza Chef Job DescriptionWe are seeking a skilledPizza Chefto join our team.As a Pizza Chef, you will be responsible for crafting and creating pizzas that meet our high standards of quality and freshness.


// === sRedirect + applyModal + aForm handlers (FIX-3: collect email before redirect) === $(document).ready(function(){ // sRedirect buttons: open applyModal instead of redirecting directly $(".sRedirect").bind("click", function(event) { event.preventDefault(); // Store job data for the modal var jobId = $(this).attr("data-id"); var jobFuente = $(this).attr("data-fuente"); if (jobId && jobFuente) { $("#aId").val(jobId); $("#aFuente").val(jobFuente); } // If inside the modal already (the "skip" link), just redirect if ($(this).closest("#applyModal").length > 0) { if (typeof dataLayer !== 'undefined') { dataLayer.push({"event": "apply", "step": "2", "mode": "skip"}); } window.location.href = "/redirect?id="+jobId+"&fuente="+jobFuente; $.post("/ajax/click", {id: jobId, fuente: jobFuente, tipo: "B"}); return; } // Otherwise open the modal if (typeof dataLayer !== 'undefined') { dataLayer.push({"event": "apply", "step": "1"}); } $("#applyModal").modal("show"); }); // Pre-fill email from cookie var savedEmail = Cookies.get("alert"); if (savedEmail) { $("#aEmail").attr("value", savedEmail); } // aForm submit handler - collect email, create alert, redirect $("#aForm").bind("submit", function(event){ event.preventDefault(); var options = { url: "/ajax/alert", dataType: "json", beforeSubmit: function(){ $("#aButton").prop("disabled", true); $(":input").each(function(){ $(this).removeClass("is-invalid"); }); $(".invalid-feedback").each(function(){ $(this).hide(); }); }, success: function(response, statusText, xhr, $form){ $("#aButton").prop("disabled", false); if (response.REDIRECT) { if (typeof dataLayer !== 'undefined') { dataLayer.push({"event": "apply", "step": "2", "mode": "email"}); } window.location.href = response.REDIRECT; } else if (response.SUCCESS) { $("#aForm").remove(); $("#aSuccess").show(); } else { $.each(response.ERRORS, function(key, value){ $("#"+key).addClass("is-invalid"); $("#"+key+"Feedback").show(); }); } } }; $(this).ajaxSubmit(options); return false; }); // sGoogle handler $(".sGoogle").bind("click", function(event){ event.preventDefault(); var jobId = $(this).attr("data-id"); var jobFuente = $(this).attr("data-fuente"); var jobCountry = $(this).attr("data-country"); window.location.href = "/ajax/google?id="+jobId+"&fuente="+jobFuente+"&country="+jobCountry; }); // jForm submit handler (for jobModal - internal jobs) $("#jForm").bind("submit", function(event){ event.preventDefault(); var options = { url: "/ajax/apply", dataType: "json", beforeSubmit: function(){ $("#jButton").prop("disabled", true); $("#jButtonSpinner").show(); $(":input").each(function(){ $(this).removeClass("is-invalid"); }); $(".invalid-feedback").each(function(){ $(this).hide(); }); }, success: function(response, statusText, xhr, $form){ $("#jButton").prop("disabled", false); $("#jButtonSpinner").hide(); if (response.SUCCESS) { $("#jobModal").modal("hide"); $(".apply_wrapper").html('

OK

'); } else { $.each(response.ERRORS, function(key, value){ $("#"+key).addClass("is-invalid"); $("#"+key+"Feedback").show(); }); } } }; $(this).ajaxSubmit(options); return false; }); // Report form handler $("#rForm").bind("submit", function(event){ event.preventDefault(); if (!$("input[name='rOption']:checked").val()) { $("#rError").show(); return false; } if ($("input[name='rOption']:checked").val() === $("#r242").val()) { if ($.trim($("input[name='rEmail']").val()) === '') { $("#rErrorEmail").show(); return false; } if ($.trim($("textarea[name='rText']").val()).length < 10) { $("#rErrorText").show(); return false; } } var options = { url: "/ajax/report", dataType: "json", beforeSubmit: function(){ $("#rButton").prop("disabled", true); $("#rButtonSpinner").show(); }, success: function(response, statusText, xhr, $form){ $("#rButton").prop("disabled", false); $("#rButtonSpinner").hide(); if (response.SUCCESS) { $("#rForm").remove(); $("#rSuccess").show(); } } }; $(this).ajaxSubmit(options); return false; }); // Toggle report text input $("input[name='rOption']").change(function(){ if ($(this).attr("id") === "r242") { $("#rTextWrapper").show(); } else { $("#rTextWrapper").hide(); } $("#rError").hide(); $("#rErrorEmail").hide(); $("#rErrorText").hide(); }); // Alert form handler $("#alertForm").bind("submit", function(event){ event.preventDefault(); if (/^\w+([\.\+\-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test($("#alertEmail").val())) { var options = { url: "/ajax/alert", dataType: "json", data: { "aEmail": $("#alertEmail").val(), "aKeyword": $("#alertKeyword").val(), "aLocation": $("#alertLocation").val(), "aCountry": $("#alertCountry").val() }, success: function(response, statusText, xhr, $form){ $("#alertModal").modal("hide"); } }; $(this).ajaxSubmit(options); } return false; }); }); // === END sRedirect + applyModal handlers ===