$(document).ready(function(){ $(document).on("submit","#myform",function(e){ e.preventDefault(); var $id = e.target.id; var $f = $("#" + $id); var $url = "save_Autom8Redis.live.py?" + $f.serialize(); $.ajax({ url: $url, type: "GET", beforeSend: function(){ $('#pageloader').show(); }, success: function(response){ console.log(response); }, complete: function(){ $('#pageloader').css("visibility", "hidden"); window.location.reload(); } }); }); });