$(document).ready(function () { $(document).on("click", "#hyperInstrucoes", function () { $.ajax({ url: "screen/hyper/manual_montage.php", method: "POST", success: function (data) { $("#body").html(data); }, }); }); $(document).on("click", "#hyperspaceInstrucoes", function () { $.ajax({ url: "screen/hyperspace/manual_montage.php", method: "POST", success: function (data) { $("#body").html(data); }, }); }); $(document).on("click", "#f40Instrucoes", function () { $.ajax({ url: "screen/f40/manual_montage.php", method: "POST", success: function (data) { $("#body").html(data); }, }); }); $(document).on("click", "#hyperviewInstrucoes", function () { $.ajax({ url: "screen/hyperview/manual_montage.php", method: "POST", success: function (data) { $("#body").html(data); }, }); }); $(document).on("click", "#backHome", function () { $.ajax({ url: "screen/home.php", method: "POST", success: function (data) { $("#body").html(data); }, }); }); $.ajax({ url: "screen/home.php", method: "POST", success: function (data) { $("#body").html(data); }, }); $(document).on("click", "#hyperflowInstrucoes", function () { $.ajax({ url: "screen/hyperflow/manual_montage.php", method: "POST", success: function (data) { $("#body").html(data); }, }); }); $(document).on("click","#F50ManualLimpeza", function(){ $.ajax({ url:"screen/F50/manual_limpeza.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#F50ManualVideoMontage", function(){ $.ajax({ url:"screen/F50/manual_videos.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#F50", function(){ $.ajax({ url:"screen/F50/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#F50VideoMontage", function(){ $.ajax({ url:"screen/F50/video_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#F50UsageGuide", function(){ $.ajax({ url:"screen/F50/usage_guide.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#F50Instrucoes", function(){ console.log("ok"); $.ajax({ url:"screen/F50/manual_montage.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click","#backMenuF50", function(){ $.ajax({ url:"screen/F50/menu.php", method:"POST", success: function(data){ $("#body").html(data); } }); }); $(document).on("click", "#F10ManualLimpeza", function () { $.ajax({ url: "screen/F10/manual_limpeza.php", method: "POST", success: function (data) { $("#body").html(data); } }); }); $(document).on("click", "#F10ManualVideoMontage", function () { $.ajax({ url: "screen/F10/manual_videos.php", method: "POST", success: function (data) { $("#body").html(data); } }); }); $(document).on("click", "#F10", function () { $.ajax({ url: "screen/F10/menu.php", method: "POST", success: function (data) { $("#body").html(data); } }); }); $(document).on("click", "#F10VideoMontage", function () { $.ajax({ url: "screen/F10/video_montage.php", method: "POST", success: function (data) { $("#body").html(data); } }); }); $(document).on("click", "#F10UsageGuide", function () { $.ajax({ url: "screen/F10/usage_guide.php", method: "POST", success: function (data) { $("#body").html(data); } }); }); $(document).on("click", "#F10Instrucoes", function () { console.log("ok"); $.ajax({ url: "screen/F10/manual_montage.php", method: "POST", success: function (data) { $("#body").html(data); } }); }); $(document).on("click", "#backMenuF10", function () { $.ajax({ url: "screen/F10/menu.php", method: "POST", success: function (data) { $("#body").html(data); } }); }); });