$(document).ready(function() { $("a.btnbuy").fancybox({ "frameWidth": 150, "frameHeight": 50 }); $("a.btnaddmylist").fancybox({ "frameWidth": 150, "frameHeight": 50 }); $("a.btnremove").fancybox({ "frameWidth": 150, "frameHeight": 50 }); $("a.btnsearch").fancybox({ "frameWidth": 150, "frameHeight": 50 }); addToShopCart = function(prodRefcentral) { $("p#addremoveMsg").html("Produto Adicionado"); $.post( "http://www.telemoveis.pt/scripts/ajax_processor.php", { op: "addToShopCart", refcentral: prodRefcentral }, function(data){ $("p#addremoveMsg").html(data.msg); $("#fancy_content p#addremoveMsg").html(data.msg); $("#shopcart").html(data.shopcart); $("#bg").addClass("full"); }, "json" ); }; incrementShopCart = function(prodRefcentral) { $.post( "http://www.telemoveis.pt/scripts/ajax_processor.php", { op: "incrementShopCart", refcentral: prodRefcentral }, function(data){ $("#quantity_"+prodRefcentral).html(data.msg); }, "json" ); }; decrementShopCart = function(prodRefcentral) { $.post( "http://www.telemoveis.pt/scripts/ajax_processor.php", { op: "decrementShopCart", refcentral: prodRefcentral }, function(data){ if (data.msg==0) { $("#product_"+prodRefcentral).hide(); $("#shopcart").html(($("#shopcart").html()-1)); } else { $("#quantity_"+prodRefcentral).html(data.msg); } if ($("#shopcart").html()=="0") { $("#bg").removeClass("full");; } }, "json" ); }; removeFromShopCart = function(prodRefcentral) { $.post( "http://www.telemoveis.pt/scripts/ajax_processor.php", { op: "removeFromShopCart", refcentral: prodRefcentral }, function(data){ $("p#addremoveMsg").html(data.msg); if (data.success) { $("#product_"+prodRefcentral).hide(); } }, "json" ); }; addToMyList = function(prodRefcentral) { $.post( "http://www.telemoveis.pt/scripts/ajax_processor.php", { op: "addToMyList", refcentral: prodRefcentral }, function(data){ $("p#addremoveMsg").html(data.msg); }, "json" ); }; removeFromMyList = function(prodRefcentral) { $.post( "http://www.telemoveis.pt/scripts/ajax_processor.php", { op: "removeFromMyList", refcentral: prodRefcentral }, function(data){ $("p#addremoveMsg").html(data.msg); if (data.success) { $("#product_"+prodRefcentral).hide(); } }, "json" ); }; checkResults = function(form) { //enviar os 3 campos form=$(form); $("p#searchMsg2").html("A pesquisar"); if ( form.find("#expression").attr("value")=='Palavra ou expressão'){//Palavra ou expressão form.find("#expression").attr("value",""); } $.post( "http://www.telemoveis.pt/scripts/ajax_processor.php", { op: "checkResults", expression: form.find("#expression").attr("value"), categories: form.find("#categories").attr("value"), brands: form.find("#brands").attr("value") }, function(data){ if (data.success) { window.location=data.url; }else{ $("p#searchMsg2").html(data.msg); } }, "json" ); $("a.btnsearch").trigger("click"); return false; }; });