Jump to content

Problem with module after upgrade 1.6.0.8


Recommended Posts

Hello, i have problem with module,

 

This code is :

function ajax_panier(id_cart)
{
    if (parseInt(id_cart) > 0)
    {
    $.ajax({
        type: 'GET',
        url: url_global + "&ajax=ajax_panier",
        async: false,
        cache: false,
        dataType : "html",
        data: 'id_cart='+id_cart,
        success: function(html)
        {
            jQuery(".interface_detail").html(html);
            
            clearInterval(interval_interface);
            interval_interface = setInterval("ajax_panier("+id_cart+")", 5000);
        }
    });
    }
}

You do not see a problem?

I'm waiting for the update of the author

Link to comment
Share on other sites

×
×
  • Create New...